Skip to content

Commit

Permalink
ISIS-1335: improving error handling in github-pr.sh when the repo to …
Browse files Browse the repository at this point in the history
…merge from cannot be found
  • Loading branch information
danhaywood committed Apr 10, 2016
1 parent 0d40572 commit 7f7520a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion github-pr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,13 @@ echo "username : $username"
echo "repo_full_name : $repo_full_name"
echo "repo_clone_url : $repo_clone_url"
echo "branch_name_fork : $branch_name_fork"

echo ""

if [ "x$repo_full_name" = "xnull" ]; then
die "Could not determine the repo to merge from"
fi


echo "merging into: $branch_name_temp"
echo ""

Expand Down

0 comments on commit 7f7520a

Please sign in to comment.