Ver código fonte

Build system: Fix _build/github-clone.sh

Daniel Rudolf 8 anos atrás
pai
commit
381b339b9f
1 arquivos alterados com 2 adições e 6 exclusões
  1. 2 6
      _build/github-clone.sh

+ 2 - 6
_build/github-clone.sh

@@ -23,11 +23,7 @@ printf 'CLONE_REPO_BRANCH="%s"\n' "$CLONE_REPO_BRANCH"
 echo
 echo
 
 
 # clone repo
 # clone repo
-git clone "$CLONE_REPO_URL" "$CLONE_TARGET_DIR"
-
-# checkout branch
-if [ -n "$CLONE_REPO_BRANCH" ]; then
-    git checkout "$CLONE_REPO_BRANCH"
-fi
+[ -n "$CLONE_REPO_BRANCH" ] || CLONE_REPO_BRANCH="master"
+git clone --branch="$CLONE_REPO_BRANCH" "$CLONE_REPO_URL" "$CLONE_TARGET_DIR"
 
 
 echo
 echo