Skip to content

Commit b0ba036

Browse files
authored
Fix passing OPT_ARGS in entrypoint.sh
eval needed to separate OPT_ARGS variable string jef#11
1 parent 6755792 commit b0ba036

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
while :
44
do
55
DATE=$(date)
6-
/opt/zap2xml.pl "$OPT_ARGS"
6+
eval /opt/zap2xml.pl "$OPT_ARGS"
77
echo "Last run time: $DATE"
88
echo "Will run in $SLEEPTIME seconds"
99
sleep "$SLEEPTIME"

0 commit comments

Comments
 (0)