Skip to content

Commit

Permalink
Fix: Remove Unnecessary Execution of $@ Outside the Loop in runfail.sh
Browse files Browse the repository at this point in the history
The unnecessary $@ outside the while loop has been removed. The corrected script now ensures that the command is only executed within the loop
  • Loading branch information
mdqst authored Nov 22, 2024
1 parent 7546af6 commit e98a0db
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion scripts/runfail.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#
# Usage:
# `./scripts/runfail.sh cargo test --profile=release-lto --features=full-ci --manifest-path testing/Cargo.toml`
$@

while [ $? -eq 0 ]; do
$@
Expand Down

0 comments on commit e98a0db

Please sign in to comment.