Pass verbose to rebuild
This commit is contained in:
@@ -1061,7 +1061,23 @@ class RunScript {
|
|||||||
|
|
||||||
} else if (StringTools.startsWith (arg, "-")) {
|
} 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), "");
|
flags.set (arg.substr (1), "");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
ignoreLength++;
|
ignoreLength++;
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1187,6 +1203,10 @@ class RunScript {
|
|||||||
|
|
||||||
flags.set ("debug", "");
|
flags.set ("debug", "");
|
||||||
|
|
||||||
|
case "-v", "-verbose":
|
||||||
|
|
||||||
|
flags.set ("verbose", "");
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
||||||
if (arg.indexOf ("--macro") == 0) {
|
if (arg.indexOf ("--macro") == 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user