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
Description:
- Modified `run_continuous.sh` to include the `--continuous` flag directly in the command:
- Removed the unused `argument` variable.
- Added the `--continuous` flag to the `./run.sh` command.
- Ensured all command-line arguments are passed through to `run.sh` and the `autogpt` module.
This change improves the usability of the `run_continuous.sh` script by allowing users to provide
additional command-line arguments along with the `--continuous` flag. It ensures that all arguments
are properly passed to the `run.sh` script and eventually to the `autogpt` module, preventing
confusion and providing more flexible usage.
Suggestion from:
https://github.com/Significant-Gravitas/Auto-GPT/pull/1941#discussion_r1167977442