Skip to content

Commit

Permalink
Try this
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfnl committed Jan 21, 2025
1 parent c90f925 commit 5f66c29
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"

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

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

View workflow job for this annotation

GitHub Actions / ShellCheck

Quote this to prevent word splitting.
sleep 2
ps -p "$(cat $PIDFILE)" u
ps -p $(cat "$PIDFILE") u

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

View workflow job for this annotation

GitHub Actions / ShellCheck

Quote this to prevent word splitting.

0 comments on commit 5f66c29

Please sign in to comment.