Skip to content

Commit

Permalink
Don't use subshell in comparison
Browse files Browse the repository at this point in the history
Co-authored-by: Jesse Schwartzentruber <truber@mozilla.com>
  • Loading branch information
pyoor and jschwartzentruber committed Jul 3, 2024
1 parent b41416f commit 7f44668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/libfuzzer/launch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ fi

exit_code=$?
echo "returned $exit_code" >&2
if [ "$exit_code" -eq 124 ]; then
if [[ "$exit_code" -eq 124 ]]; then
# timeout coreutil exit code.
exit 0
else
Expand Down

0 comments on commit 7f44668

Please sign in to comment.