This website requires JavaScript.
Explore
Help
Sign In
Significant-Gravitas
/
AutoGPT
mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
Watch
1
Star
0
Fork
You've already forked AutoGPT
1
Code
Issues
Packages
Projects
Releases
Wiki
Activity
5168cb5219
AutoGPT
/
run_continuous.sh
4 lines
38 B
Bash
Raw
Normal View
History
Unescape
Escape
Add run scripts for shell
2023-04-15 23:37:50 +00:00
#!/bin/bash
Fix: Update run_continuous.sh to pass all command-line arguments 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
2023-04-16 21:03:18 +00:00
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
2023-04-16 22:07:41 +00:00
./run.sh --continuous
$@