Skip to content

Commit 2555bc7

Browse files
committed
Use the doMelt variable
tests/run.sh was mistakenly using the literal "doMelt" which always resolves to true since it's non-empty. Intended behavior was to use the variable named doMelt. Closes #159
1 parent 16df48c commit 2555bc7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ do
124124
doMelt=
125125
fi
126126
done
127-
if [ "doMelt" ]
127+
if [ "$doMelt" ]
128128
then
129129
echo &&
130130
(cd "$meltingPotDir" && sh melt.sh) & keep_alive $! || die 'Melting pot failed!'

0 commit comments

Comments
 (0)