Skip to content

Commit

Permalink
Fix include path name
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoJF committed Feb 13, 2020
1 parent 34c3b32 commit 1b1cb50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/compile-plugin-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
- name: Create plugins directory
run: mkdir plugins

- run: spcomp -i scripting/includes scripting/deathmatch.sp -o plugins/deathmatch.smx
- run: spcomp -i scripting/includes scripting/deathmatch_loader.sp -o plugins/deathmatch_loader.smx
- run: spcomp -i scripting/include scripting/deathmatch.sp -o plugins/deathmatch.smx
- run: spcomp -i scripting/include scripting/deathmatch_loader.sp -o plugins/deathmatch_loader.smx

- name: Prepare files for artifact
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create-release-on-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ jobs:
- name: Create plugins directory
run: mkdir -p plugins

- run: spcomp -i ./scripting/includes ./scripting/deathmatch.sp -o ./plugins/deathmatch.smx
- run: spcomp -i ./scripting/include ./scripting/deathmatch.sp -o ./plugins/deathmatch.smx

- run: spcomp -i ./scripting/includes ./scripting/deathmatch_loader.sp -o ./plugins/deathmatch_loader.smx
- run: spcomp -i ./scripting/include ./scripting/deathmatch_loader.sp -o ./plugins/deathmatch_loader.smx

- name: Prepare files for artifact
run: |
Expand Down

0 comments on commit 1b1cb50

Please sign in to comment.