Skip to content

Commit

Permalink
Allow OVERRIDE_UTILITIES_BRANCH
Browse files Browse the repository at this point in the history
  • Loading branch information
jgarcows committed Sep 23, 2016
1 parent c07612b commit a36ae31
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion _init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,11 @@ source ${EXT_DIR}/git_util.sh
################################
pushd . >/dev/null
cd $EXT_DIR
git_retry clone https://github.com/Osthanes/utilities.git utilities
if [ -n "${OVERRIDE_UTILITIES_BRANCH}" ]; then
git_retry clone https://github.com/Osthanes/utilities.git -b "${OVERRIDE_UTILITIES_BRANCH}" utilities
else
git_retry clone https://github.com/Osthanes/utilities.git utilities
fi
popd >/dev/null

#################################
Expand Down

0 comments on commit a36ae31

Please sign in to comment.