Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleaned up the hudson-post-receive script #3

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
7 changes: 4 additions & 3 deletions server/functions
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,10 @@ display_error_message() {
echo "----------------------------------------------------" >&2
echo "" >&2
echo "" >&2
for ((i=1;i<=$#;i+=1)); do
eval message="$"$i
echo "$message" >&2
for i in `seq 1 $#`
do
eval message="$"$i
echo "$message" >&2
done
echo "" >&2
echo "" >&2
Expand Down
Loading