summaryrefslogtreecommitdiff
path: root/roles/flatbot
diff options
context:
space:
mode:
authorDmitry Ilvokhin <d@ilvokhin.com>2026-02-13 13:53:53 +0000
committerDmitry Ilvokhin <d@ilvokhin.com>2026-02-13 13:53:53 +0000
commit35d7c7ceb9e96f749b3834c5c993f31341fb43a4 (patch)
tree9e630f4c501fd1296a86ea7b151f5cb8afb51ea2 /roles/flatbot
parent5c635acbc5379e3c592e3a794fdcba1a0388d5fc (diff)
downloadinfra-35d7c7ceb9e96f749b3834c5c993f31341fb43a4.tar.gz
infra-35d7c7ceb9e96f749b3834c5c993f31341fb43a4.tar.bz2
infra-35d7c7ceb9e96f749b3834c5c993f31341fb43a4.zip
Remove curly braces from flatbot wrapper
Diffstat (limited to 'roles/flatbot')
-rwxr-xr-xroles/flatbot/files/run-flatbot4
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