This commit is contained in:
Cyril 2024-03-11 05:00:51 +01:00
parent 9fd23550e3
commit cb4c67734e
2 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@ function customize_menu_ke() {
2)
if [ -f "$CREALITY_WEB_FILE" ]; then
error_msg "Creality Web Interface is already present!"
elif [ ! "$INITD_FOLDER"/S99start_app ]: then
elif [ ! -f "$INITD_FOLDER"/S99start_app ]: then
error_msg "Guppy Screen need to be removed first to restore Creality Web Interface!"
else
run "restore_creality_web_interface" "customize_menu_ui_ke"

View file

@ -63,7 +63,7 @@ function customize_menu() {
4)
if [ -f "$CREALITY_WEB_FILE" ]; then
error_msg "Creality Web Interface is already present!"
elif [ ! "$INITD_FOLDER"/S99start_app ]: then
elif [ ! -f "$INITD_FOLDER"/S99start_app ]: then
error_msg "Guppy Screen need to be removed first to restore Creality Web Interface!"
else
run "restore_creality_web_interface" "customize_menu_ui"