Skip to content

Commit 69ce00c

Browse files
author
Viviane Rochon Montplaisir
committed
Update script to run fixed variable example in batch
1 parent 24ac8b9 commit 69ce00c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/advanced/batch/FixedVariable/runFixed.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
rm -f cache.txt out1 out2 out3 out10
44
# Fix 0-2
55
echo "Fix 0-2"
6-
nomad param1.txt >& out1
6+
$NOMAD_HOME/bin/nomad param1.txt >& out1
77
echo "Cache size: "; wc -l cache.txt
88
# Fix 2-3
99
echo "Fix 2-3"
10-
nomad param2.txt >& out2
10+
$NOMAD_HOME/bin/nomad param2.txt >& out2
1111
echo "Cache size: "; wc -l cache.txt
1212
# Fix 3-4
1313
echo "Fix 3-4"
14-
nomad param3.txt >& out3
14+
$NOMAD_HOME/bin/nomad param3.txt >& out3
1515
echo "Cache size: "; wc -l cache.txt
1616
# Fix nothing
1717
echo "Fix nothing"
18-
nomad param10.txt >& out10
18+
$NOMAD_HOME/bin/nomad param10.txt >& out10
1919
echo "Cache size: "; wc -l cache.txt

0 commit comments

Comments
 (0)