Skip to content

Commit

Permalink
Fix: Remove quotes around $@ in run_continuous.sh
Browse files Browse the repository at this point in the history
Description:
Per maintainer's request, removed quotes around `$@` in `run_continuous.sh`.
This change allows the script to forward arguments as is. Please note that
this modification might cause issues if any of the command-line arguments
contain spaces or special characters. However, this update aligns with the
preferred format for the repository.

Suggestion from:
Significant-Gravitas#1941 (comment)
  • Loading branch information
0xf333 committed Apr 16, 2023
1 parent 30e7693 commit 4eb8e78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_continuous.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

./run.sh --continuous "$@"
./run.sh --continuous $@

0 comments on commit 4eb8e78

Please sign in to comment.