Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Why are specified parameters not passed to standard I/O when using External Hooks?

Larry Schmidt February 27, 2014

I am trying to use the External Hooks plugin as a pre-receive hook. If I try to echo my standard input, I do not see the three parameters that are supposed to be passed. That is, I do not see from_ref, to_ref, ref_name. The hook follows:

#!/bin/sh

echo "My First Hook"

echo $STASH_USER_NAME

echo $STASH_USER_EMAIL

echo $1

exit 0

The user name and email are successful. The '$1' is empty.

What did I do wrong?

1 answer

1 accepted

0 votes
Answer accepted
cofarrell
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 28, 2014

Hi Larry,

I'm no bash expert, but do you need to read the stdin in first? $1 will be the first argument to the script.

#!/bin/sh
read oldrev newrev refname
echo $oldrev

http://stackoverflow.com/questions/3762084/git-empty-arguments-in-post-receive-hook

Does that help?

Charles

Larry Schmidt March 3, 2014

Charles,

That works. Thank you!

Normally, when executing a bash script from a bash shell, the input has been read, and one can readily reference $1 as the first argument and so on.

Larry

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events