61-dev1.8

This commit is contained in:
2024-11-12 17:27:48 -07:00
parent 11315caa81
commit 09dbfa03ef
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -171,8 +171,8 @@ function handleSetupEnvironment() {
if [[ -d "$espressifLocation" && "$idfGet" == "update" ]]; then
writeToLog "Skipping delete of $espressifLocation because dir exists AND idfGet is set to update"
else
if [ -d "$espressifLocation" ]; then
writeToLog "deleting $espressifLocation"
if [[ -d $espressifLocation ]]; then
writeToLog "$espressifLocation fonud, deleting"
rm -rf $espressifLocation
returnStatus
else