Archived
1
Fork 0

Remove unnecessary /bin/bash from linux cmds

This commit is contained in:
redstrate 2021-02-15 19:48:24 -05:00
parent 6045244be5
commit c24393fc16

View file

@ -9,9 +9,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- run: sudo apt-get install -y cmake
- run: /bin/bash mkdir -p build
- run: /bin/bash cmake ..
- run: /bin/bash make
- run: mkdir -p build
- run: cmake ..
- run: make
windows:
runs-on: windows-latest