Skip to content

Commit fcd9786

Browse files
committed
Fix file permissions for binary files
1 parent 4679e4d commit fcd9786

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/cli.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,10 @@ main() {
119119
curl -s $GITHUB_TEMPLATE/web/layout.html > "${DOMAIN}/web/layout.html"
120120
replace_in_file "$DOMAIN/web/layout.html" "DOMAIN" "$DOMAIN"
121121
echo -e "${GREEN}${END} web/layout.html"
122-
122+
123123
# Make the binary files executable
124-
chmod +x "${DOMAIN}/bin/*"
124+
# shellcheck disable=2086
125+
chmod +x ./$DOMAIN/bin/*
125126

126127
# Ask if the user wants to install QB64
127128

0 commit comments

Comments
 (0)