fixed bad variable assignment

This commit is contained in:
Alex Phillips 2021-12-17 11:22:27 -05:00
parent fb4c4c4da1
commit b18f779a96

View File

@ -1,6 +1,6 @@
#!/usr/bin/with-contenv bash
$TAIL_LOGS=$(echo $LOGS_TO_STDOUT | sed 's#|# -f #g')
TAIL_LOGS=$(echo "$LOGS_TO_STDOUT" | sed 's#|# -f #g')
echo "Executing: tail -f $TAIL_LOGS"
tail -f $TAIL_LOGS