Skip to content

Commit

Permalink
Fix file permissions for binary files
Browse files Browse the repository at this point in the history
  • Loading branch information
jamonholmgren committed Dec 8, 2023
1 parent 4679e4d commit fcd9786
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit fcd9786

Please sign in to comment.