Skip to content

Commit

Permalink
Replace last /bin/bash with bash in test-run.sh
Browse files Browse the repository at this point in the history
The other three references to bash already use "bash" instead of
"/bin/bash". Similarly, "#!/bin/bash" has already been replaced with
"#!/usr/bin/env bash".

Signed-off-by: Jonathan Wright <quaggy@gmail.com>
  • Loading branch information
quag committed Oct 1, 2023
1 parent 7069950 commit 0ff3430
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ for die_with_parent_argv in "--die-with-parent" "--die-with-parent --unshare-pid
# We have to loop here, because bwrap doesn't wait for the lock if
# another process is holding it. If we're unlucky, lockf-n.py will
# be holding it.
/bin/bash -c "while true; do $RUN ${die_with_parent_argv} --lock-file $(pwd)/lock sleep 1h; done" &
bash -c "while true; do $RUN ${die_with_parent_argv} --lock-file $(pwd)/lock sleep 1h; done" &
childshellpid=$!

# Wait for lock to be taken (yes hacky)
Expand Down

0 comments on commit 0ff3430

Please sign in to comment.