forked from Github_Repos/cvw
genCheckpoint path bugfix
This commit is contained in:
parent
6e67ad9335
commit
e4da379340
@ -2,8 +2,6 @@
|
|||||||
|
|
||||||
source genSettings.sh
|
source genSettings.sh
|
||||||
tcpPort=1236
|
tcpPort=1236
|
||||||
checkOutDir="$outDir/checkpoint$instrs"
|
|
||||||
checkIntermedDir="$checkOutDir/intermediate-outputs"
|
|
||||||
|
|
||||||
# Parse Commandline Arg
|
# Parse Commandline Arg
|
||||||
if [ "$#" -ne 1 ]; then
|
if [ "$#" -ne 1 ]; then
|
||||||
@ -16,6 +14,8 @@ then
|
|||||||
echo "Error expected integer number of instructions, got $instrs" >&2
|
echo "Error expected integer number of instructions, got $instrs" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
checkOutDir="$outDir/checkpoint$instrs"
|
||||||
|
checkIntermedDir="$checkOutDir/intermediate-outputs"
|
||||||
|
|
||||||
read -p "This scripts is going to create a checkpoint at $instrs instrs.
|
read -p "This scripts is going to create a checkpoint at $instrs instrs.
|
||||||
Is that what you wanted? (y/n) " -n 1 -r
|
Is that what you wanted? (y/n) " -n 1 -r
|
||||||
|
Loading…
Reference in New Issue
Block a user