build: fix var echo after refactor

This commit is contained in:
Franco Fichtner 2017-01-28 11:37:18 +01:00
parent af05ce4b58
commit 36fe144c30
1 changed files with 2 additions and 2 deletions

View File

@ -258,14 +258,14 @@ git_reset()
git_fetch()
{
echo ">>> Fetching ${DIR}..."
echo ">>> Fetching ${1}:"
git -C ${1} fetch --all --prune
}
git_pull()
{
echo ">>> Pulling branch ${BRANCH} of ${DIR}..."
echo ">>> Pulling branch ${2} of ${1}:"
git -C ${1} checkout ${2}
git -C ${1} pull