KlipperScreen Install Fix (#1385)

Fixed Syntax Error from line 154 when running install script.
This commit is contained in:
Bruno 2024-05-31 11:45:59 +01:00 committed by GitHub
parent 9a4c3879fd
commit d0e9dd0352
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -117,7 +117,8 @@ create_virtualenv()
if [ -d $KSENV ]; then
echo_text "Removing old virtual environment"
rm -rf ${KSENV}
fi
echo_text "Creating virtual environment"
python3 -m venv ${KSENV}