From fcd97869e6d791a1263c20e859d8b8394b42f430 Mon Sep 17 00:00:00 2001 From: Jamon Holmgren Date: Fri, 8 Dec 2023 10:11:14 -0800 Subject: [PATCH] Fix file permissions for binary files --- src/cli.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/cli.sh b/src/cli.sh index 6643a69..2c18b8a 100755 --- a/src/cli.sh +++ b/src/cli.sh @@ -119,9 +119,10 @@ main() { curl -s $GITHUB_TEMPLATE/web/layout.html > "${DOMAIN}/web/layout.html" replace_in_file "$DOMAIN/web/layout.html" "DOMAIN" "$DOMAIN" echo -e "${GREEN}✓${END} web/layout.html" - + # Make the binary files executable - chmod +x "${DOMAIN}/bin/*" + # shellcheck disable=2086 + chmod +x ./$DOMAIN/bin/* # Ask if the user wants to install QB64