Skip to content

Commit 7c5f72c

Browse files
author
Adam Soos
committed
WS-3314: update example runner
1 parent a48864d commit 7c5f72c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

examples/run_all.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
#!/bin/bash
2+
3+
OPTS=""
4+
if [ -n "$2" ]; then
5+
OPTS="-u $2"
6+
fi
7+
28
for f in *.py
39
do
4-
python $f --key $1
10+
python $f --key $1 "$OPTS"
511
done

0 commit comments

Comments
 (0)