This commit is contained in:
2025-04-30 16:11:11 -06:00
parent 7594b86775
commit 03113a69d1
+3 -3
View File
@@ -9,7 +9,7 @@ else
fi
rcFile=$HOME/.zshrc # shell rc file
# gitJobs=5 # number of jobs to download from github with
gitJobs=3 # number of jobs to download from github with
gitJobs=default # default for no --jobs x arg, integar for a number of jobs
rebootMins=3 # minutes of warning before reboot
@@ -38,9 +38,9 @@ arg=$1 # just rename the argument var for clarity with the functions
# commands
if [ "$gitJobs" == "default" ]; then
gitCloneCmd="git clone --recursive --branch $gitBranch https://github.com/espressif/esp-idf $idfDir"
gitCloneCmd="git clone --single-branch --recursive --branch $gitBranch https://github.com/espressif/esp-idf $idfDir"
else
gitCloneCmd="git clone --recursive --jobs $gitJobs --branch $gitBranch https://github.com/espressif/esp-idf $idfDir"
gitCloneCmd="git clone --single-branch --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"