61-dev1.11

This commit is contained in:
2024-11-12 17:45:13 -07:00
parent 245ee9ce16
commit c9c34a27e4
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -205,7 +205,9 @@ function handleAliasEnviron() {
function handleDownloadInstall() { function handleDownloadInstall() {
writeToLog "Handling download and install (function ran)\n" writeToLog "Handling download and install (function ran)\n"
if [ "$idfGet" == "download" ]; then if [ "$idfGet" == "download" || ! -d "$idfDir" ]; then
writeToLog "Setting for download mode\n"
if [ -d "$idfDir" ]; then if [ -d "$idfDir" ]; then
writeToLog "deleting $idfDir" writeToLog "deleting $idfDir"
rm -rf $idfDir rm -rf $idfDir
+1 -1
View File
@@ -1 +1 @@
61-dev1.10 61-dev1.11