This commit is contained in:
2025-04-30 16:18:26 -06:00
parent 23ab48b7e2
commit ed126d60b8
+2 -2
View File
@@ -38,9 +38,9 @@ arg=$1 # just rename the argument var for clarity with the functions
# commands
if [ "$gitJobs" == "default" ]; then
gitCloneCmd="git clone --single-branch -depth 1 --recursive --branch $gitBranch https://github.com/espressif/esp-idf $idfDir"
gitCloneCmd="git clone --single-branch --depth 1 --recursive --branch $gitBranch https://github.com/espressif/esp-idf $idfDir"
else
gitCloneCmd="git clone --single-branch -depth 1 --recursive --jobs $gitJobs --branch $gitBranch https://github.com/espressif/esp-idf $idfDir"
gitCloneCmd="git clone --single-branch --depth 1 --recursive --jobs $gitJobs --branch $gitBranch https://github.com/espressif/esp-idf $idfDir"
fi
# gitCloneCmd="git clone --recursive --single-branch --jobs $gitJobs --branch $gitBranch https://github.com/espressif/esp-idf $idfDir"