Skip to content

Commit

Permalink
Protect PATH expansion with quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
MakisH committed May 14, 2024
1 parent b40d4ed commit 8515429
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- main
- develop
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
./run.sh &
PIDOne=$!
cd ../openfast
PATH=../../build/:${PATH} ./run.sh &
PATH="../../build/:${PATH}" ./run.sh &
PIDTwo=$!
wait $PIDOne
wait $PIDTwo

0 comments on commit 8515429

Please sign in to comment.