From a3c5c0a2fbfe4425be083de97e3a67126890bfa4 Mon Sep 17 00:00:00 2001 From: Henry Tung Date: Mon, 30 Jun 2025 14:25:31 -0700 Subject: [PATCH] Don't set executable bit on guppy_screen.sh Setting this bit is not necessary as guppy_update.cfg invokes the script with the `sh` interpreter. See https://github.com/Guilouz/Creality-Helper-Script-Wiki/discussions/821. --- scripts/guppy_screen.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/guppy_screen.sh b/scripts/guppy_screen.sh index 52733de..e5838a8 100755 --- a/scripts/guppy_screen.sh +++ b/scripts/guppy_screen.sh @@ -141,7 +141,6 @@ function install_guppy_screen(){ fi cp "$GUPPY_SCREEN_CONFIG_3V3_URL" "$GUPPY_SCREEN_FOLDER"/guppyconfig.json fi - chmod 775 "$GUPPY_SCREEN_URL2" if grep -q "include GuppyScreen" "$PRINTER_CFG" ; then echo -e "Info: Guppy Screen configurations are already enabled in printer.cfg file." else @@ -291,4 +290,4 @@ function remove_guppy_screen(){ error_msg "Please select a correct choice!";; esac done -} \ No newline at end of file +}