Pass verbose to rebuild
This commit is contained in:
@@ -1061,7 +1061,23 @@ class RunScript {
|
||||
|
||||
} else if (StringTools.startsWith (arg, "-")) {
|
||||
|
||||
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) {
|
||||
|
||||
Reference in New Issue
Block a user