Fix: Remove quotes around $@ in run_continuous.sh

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:
https://github.com/Significant-Gravitas/Auto-GPT/pull/1941#discussion_r1168035557
This commit is contained in:
0xf333 2023-04-16 18:07:41 -04:00
parent 30e7693b24
commit 4eb8e7823d

View File

@ -1,3 +1,3 @@
#!/bin/bash
./run.sh --continuous "$@"
./run.sh --continuous $@