Skip to content

Commit

Permalink
Double quotes in start [2]
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfnl committed Jan 21, 2025
1 parent dbf6faf commit 5c9e15f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/utils/proxy/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ set -x

start-stop-daemon --verbose --start --background --pidfile $PIDFILE --make-pidfile --exec $PROXYBIN -- $ARGS

Check warning on line 15 in tests/utils/proxy/start.sh

View workflow job for this annotation

GitHub Actions / ShellCheck

Quotes/backslashes in this variable will not be respected.

ps -p $(cat $PIDFILE) u
ps -p "$(cat "$PIDFILE")" u
sleep 2
ps -p $(cat $PIDFILE) u
ps -p "$(cat "$PIDFILE")" u

0 comments on commit 5c9e15f

Please sign in to comment.