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