fixed sed delimiter to prevent interferring with paths

This commit is contained in:
Alex Phillips 2021-12-17 11:16:13 -05:00
parent 1f71bf909e
commit fb4c4c4da1

View File

@ -1,5 +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