Explorar o código

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

Matthias Schiffer %!s(int64=7) %!d(string=hai) anos
pai
achega
2e6d457ec1
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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