Browse Source

scripts/update.sh: don't hide errors because of invalid commit IDs

Matthias Schiffer 7 years ago
parent
commit
2e6d457ec1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/update.sh

+ 1 - 1
scripts/update.sh

@@ -20,6 +20,6 @@ for module in $GLUON_MODULES; do
 
 	if ! git branch -f base "$commit" 2>/dev/null; then
 		git fetch "$repo" "$branch"
-		git branch -f base "$commit" 2>/dev/null
+		git branch -f base "$commit"
 	fi
 done