mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2024-12-12 12:40:36 +00:00
Use Powershell syntax for executable check
This commit is contained in:
parent
820eb00cd1
commit
c168855a1a
1 changed files with 4 additions and 4 deletions
8
.github/actions/test/action.yml
vendored
8
.github/actions/test/action.yml
vendored
|
@ -39,9 +39,9 @@ runs:
|
||||||
fi
|
fi
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: verify executables in PATH on Powershell
|
- name: Verify executables in PATH on Powershell
|
||||||
run: |
|
run: |
|
||||||
if ! hash selene stylua rojo 2>/dev/null; then
|
Get-Command "selene"
|
||||||
exit 1;
|
Get-Command "stylua"
|
||||||
fi
|
Get-Command "rojo"
|
||||||
shell: powershell
|
shell: powershell
|
||||||
|
|
Loading…
Reference in a new issue