Skip to content

Commit

Permalink
fixup! Avoid shell injection in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesWrigley committed Jun 18, 2024
1 parent 0a4364b commit 0273992
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ jobs:
env:
BODY: ${{github.event.pull_request.body}}
run: |
body="${BODY}"
package="$(echo '$body' | sed -n '1p')"
body=${BODY}
# package="$(echo '$body' | sed -n '1p')"
if [ "$OSTYPE" != "darwin"* ]; then
rm -f /opt/hostedtoolcache/julia/1.6*/x64/lib/julia/libstdc++.so.6
fi
Expand Down

0 comments on commit 0273992

Please sign in to comment.