Skip to content

Commit

Permalink
tweaking comments / log outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
steveri committed Sep 14, 2023
1 parent 7230f1f commit f396adf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .buildkite/bin/custom-checkout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set +u # nounset? not on my watch!
set +x # debug OFF
PS4=">" # Prevents "+++" prefix during 3-deep "set -x" execution

echo "+++ custom-checkout.sh BEGIN"
echo "+++ BEGIN custom-checkout.sh"
echo I am in dir `pwd`

# Checkout master or BUILDKITE_COMMIT
Expand All @@ -22,7 +22,7 @@ if [ "$REQUEST_TYPE" == "SUBMOD_PR" ]; then
git fetch -v --prune -- origin master
git checkout -qf master
else
echo "Push or PR from aha repo: check out requested aha branch"
echo "Push or PR from aha repo: check out requested aha branch $BUILDKITE_COMMIT"
git fetch -v --prune -- origin $BUILDKITE_COMMIT
git checkout -qf $BUILDKITE_COMMIT
fi
Expand All @@ -46,4 +46,4 @@ if [ "$REQUEST_TYPE" == "SUBMOD_PR" ]; then
(set -x; cd $PR_REPO_TAIL; git fetch origin && git checkout $BUILDKITE_COMMIT)
fi

echo "--- custom-checkout.sh END"
echo "--- END custom-checkout.sh"

0 comments on commit f396adf

Please sign in to comment.