Fix runtime errors in cleanup script.

This commit is contained in:
Anna Rose 2021-08-05 21:45:29 -04:00
parent 429a1d5302
commit bcc77ca248

View File

@ -8,7 +8,7 @@ function cleanDir {
print "Entering '" + dir + "'.". print "Entering '" + dir + "'.".
cd(dir). cd(dir).
compileHere(). cleanHere().
cd(".."). cd("..").
print "Leaving '" + dir + "'.". print "Leaving '" + dir + "'.".
} }
@ -24,7 +24,7 @@ function cleanHere {
deletepath(f). deletepath(f).
} }
} else if f:NAME[0] <> "." { } else if f:NAME[0] <> "." {
compileDir(f). cleanDir(f).
} }
} }
} }