diff options
| -rwxr-xr-x | packaging/macosx/osx-build.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packaging/macosx/osx-build.sh b/packaging/macosx/osx-build.sh index db3b30249..135c6e2d9 100755 --- a/packaging/macosx/osx-build.sh +++ b/packaging/macosx/osx-build.sh @@ -267,12 +267,12 @@ then cd $SRCROOT if [ -z "$(bzr info | grep "checkout")" ]; then echo "repo is unbound (branch)" - update_cmd="bzr pull" + bzr pull else echo "repo is bound (checkout)" - update_cmd="bzr update" + echo '... please update bound branch manually.' + false fi - $update_cmd status=$? if [[ $status -ne 0 ]]; then echo -e "\nBZR update failed" |
