Remove unnecessary /bin/bash from linux cmds
This commit is contained in:
parent
6045244be5
commit
c24393fc16
1 changed files with 3 additions and 3 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -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
|
||||||
|
|
Reference in a new issue