Fix variable name for virtual environment removal (#902)

Fix: wrong variable name venv_path → VENV_PATH in script

Because the environment variable was misspelled (venv_path instead of VENV_PATH), the script never detected the directory and therefore failed to remove the folder. This commit fixes the variable name so the directory is correctly deleted.
This commit is contained in:
Dev PHP 2025-11-16 08:38:48 +00:00 committed by GitHub
parent 25bd7d9a98
commit ecdafa0c86
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -238,7 +238,7 @@ function tool_remove {
update-desktop-database $APPLICATIONS_PATH update-desktop-database $APPLICATIONS_PATH
# remove python virtual environment # remove python virtual environment
remove_directory $venv_path remove_directory $VENV_PATH
echo; echo "auto-cpufreq tool and all its supporting files successfully removed"; echo echo; echo "auto-cpufreq tool and all its supporting files successfully removed"; echo
} }