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:
|
||||
- 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
|
||||
|
|
Reference in a new issue