Skip to content

Commit

Permalink
Update runFixed.sh: Use relative path.
Browse files Browse the repository at this point in the history
  • Loading branch information
Viviane Rochon Montplaisir committed Apr 21, 2021
1 parent ca31c55 commit a116199
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/advanced/batch/FixedVariable/runFixed.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
rm -f cache.txt out1 out2 out3 out10
# Fix 0-2
echo "Fix 0-2"
$NOMAD_HOME/bin/nomad param1.txt >& out1
../../../../bin/nomad param1.txt >& out1
echo "Cache size: "; wc -l cache.txt
# Fix 2-3
echo "Fix 2-3"
$NOMAD_HOME/bin/nomad param2.txt >& out2
../../../../bin/nomad param2.txt >& out2
echo "Cache size: "; wc -l cache.txt
# Fix 3-4
echo "Fix 3-4"
$NOMAD_HOME/bin/nomad param3.txt >& out3
../../../../bin/nomad param3.txt >& out3
echo "Cache size: "; wc -l cache.txt
# Fix nothing
echo "Fix nothing"
$NOMAD_HOME/bin/nomad param10.txt >& out10
../../../../bin/nomad param10.txt >& out10
echo "Cache size: "; wc -l cache.txt

0 comments on commit a116199

Please sign in to comment.