Rename task.branch to task.checkout

This commit is contained in:
southerntofu 2020-09-16 13:22:54 +02:00
parent 0887bd839f
commit d41c474275
1 changed files with 4 additions and 3 deletions

View File

@ -190,12 +190,13 @@ for p_name in ${PROJECTS[*]}; do
continue
fi
info process
# TODO: Should be able to switch branch after a repo was cloned
if [ -f $BASEDIR/$p_name.branch ]; then
p_branch="$(cat $BASEDIR/$p_name.branch)"
# checkout a specific branch/commit
if [ -f $BASEDIR/$p_name.checkout ]; then
p_branch="$(cat $BASEDIR/$p_name.checkout)"
export i18n_branch="$p_branch"
info to_branch
else
# TODO: support non-master primary branch
p_branch="master"
export i18n_branch="$p_branch"
debug default_branch