Browse Source

More debug output

bryan 2 years ago
parent
commit
f3bce0a6fe
1 changed files with 2 additions and 2 deletions
  1. 2 2
      openwrtbuilder

+ 2 - 2
openwrtbuilder

@@ -617,9 +617,9 @@ fromSource() {
     git -C "$GITSRCDIR" pull
  
     if [[ ${P_ARR[release]} == "snapshot" ]]; then
-        git -C "$GITSRCDIR" worktree add -f -d "$GITWORKTREEDIR" master
+        git -C "$GITSRCDIR" worktree add -q -d "$GITWORKTREEDIR" master
     else
-        git -C "$GITSRCDIR" worktree add -f -d "$GITWORKTREEDIR" "v$RELEASE"
+        git -C "$GITSRCDIR" worktree add -q -d "$GITWORKTREEDIR" "v$RELEASE"
     fi
 
     pushd "$GITWORKTREEDIR" &>/dev/null || return 1