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: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- run: sudo apt-get install -y cmake - run: sudo apt-get install -y cmake
- run: /bin/bash mkdir -p build - run: mkdir -p build
- run: /bin/bash cmake .. - run: cmake ..
- run: /bin/bash make - run: make
windows: windows:
runs-on: windows-latest runs-on: windows-latest