diff --git a/scripts/lib/bashy-basics/buildy/pull-repo b/scripts/lib/bashy-basics/buildy/pull-repo index f1ed780..75fc7a1 100755 --- a/scripts/lib/bashy-basics/buildy/pull-repo +++ b/scripts/lib/bashy-basics/buildy/pull-repo @@ -97,7 +97,7 @@ function actually-pull { true \ && git checkout --quiet "${mainBranch}" \ - && git 1>&2 pull --quiet "${idArgs[@]}" \ + && git 1>&2 pull --quiet \ && git 1>&2 pull --quiet --tags --force ) \ || return "$?" @@ -107,7 +107,10 @@ function actually-pull { progress-msg " Tag: ${tagSpec}" ( cd "${destDir}" - git checkout --quiet "${tagSpec}" + + true \ + && git checkout --quiet "${tagSpec}" \ + && git 1>&2 pull --quiet ) \ || return "$?" fi