Skip to content

Commit

Permalink
Add a missing escape to build.yml
Browse files Browse the repository at this point in the history
We want to actually write '$@', but without escape it gets replaced
with the arguments used to run the script itself.
  • Loading branch information
Gabriele Mazzotta committed Jan 29, 2024
1 parent a1907a4 commit 20ec7ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
preflight do
File.write wrapper_script, <<~EOS
#!/bin/sh
"#{staged_path}/openfortivpn-webview.app/Contents/MacOS/openfortivpn-webview" "$@"
"#{staged_path}/openfortivpn-webview.app/Contents/MacOS/openfortivpn-webview" "\$@"
EOS
end
Expand Down

0 comments on commit 20ec7ea

Please sign in to comment.