Skip to content

Commit

Permalink
Fix: Enabling execution permission chmod +x on FlavorLang executable
Browse files Browse the repository at this point in the history
  • Loading branch information
KennyOliver committed Jan 3, 2025
1 parent d404fc4 commit 4bbb0ac
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ jobs:
- name: Rename FlavorLang interpreter
run: mv src/flavor src/flavorlang-${{ matrix.os }}

# **New Step: Make Interpreter Executable**
- name: Make interpreter executable
run: chmod +x src/flavorlang-${{ matrix.os }}

# Upload artifacts separately for clarity
- name: Upload VS Code extension
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 4bbb0ac

Please sign in to comment.