Pass verbose to rebuild

This commit is contained in:
Joshua Granick
2014-04-08 08:37:08 -07:00
parent 7939b8838d
commit a400e311ef
2 changed files with 21 additions and 1 deletions

BIN
run.n vendored

Binary file not shown.

View File

@@ -1061,7 +1061,23 @@ class RunScript {
} else if (StringTools.startsWith (arg, "-")) {
flags.set (arg.substr (1), "");
switch (arg) {
case "-v", "-verbose":
flags.set ("verbose", "");
defines.push ("-verbose");
case "-d", "-debug":
flags.set ("debug", "");
default:
flags.set (arg.substr (1), "");
}
ignoreLength++;
}
@@ -1187,6 +1203,10 @@ class RunScript {
flags.set ("debug", "");
case "-v", "-verbose":
flags.set ("verbose", "");
default:
if (arg.indexOf ("--macro") == 0) {