diff options
| author | Dmitry Ilvokhin <d@ilvokhin.com> | 2026-02-13 13:53:53 +0000 |
|---|---|---|
| committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2026-02-13 13:53:53 +0000 |
| commit | 35d7c7ceb9e96f749b3834c5c993f31341fb43a4 (patch) | |
| tree | 9e630f4c501fd1296a86ea7b151f5cb8afb51ea2 /roles/flatbot | |
| parent | 5c635acbc5379e3c592e3a794fdcba1a0388d5fc (diff) | |
| download | infra-35d7c7ceb9e96f749b3834c5c993f31341fb43a4.tar.gz infra-35d7c7ceb9e96f749b3834c5c993f31341fb43a4.tar.bz2 infra-35d7c7ceb9e96f749b3834c5c993f31341fb43a4.zip | |
Remove curly braces from flatbot wrapper
Diffstat (limited to 'roles/flatbot')
| -rwxr-xr-x | roles/flatbot/files/run-flatbot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/flatbot/files/run-flatbot b/roles/flatbot/files/run-flatbot index 1d8869d..70d9962 100755 --- a/roles/flatbot/files/run-flatbot +++ b/roles/flatbot/files/run-flatbot @@ -19,9 +19,9 @@ do continue ;; *) - urls="${urls} ${line}" + urls="$urls $line" ;; esac done < $urlsfile -exec /usr/bin/flatbot -state $state -once ${urls} +exec /usr/bin/flatbot -state $state -once $urls |