mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
Added command line option --verbose-build and --verbose-upload
This commit is contained in:
parent
1fe82d847c
commit
d60f1df996
@ -320,7 +320,8 @@ public class Base {
|
||||
|
||||
boolean doUpload = false;
|
||||
boolean doVerify = false;
|
||||
boolean doVerbose = false;
|
||||
boolean doVerboseBuild = false;
|
||||
boolean doVerboseUpload = false;;
|
||||
String selectBoard = null;
|
||||
String selectPort = null;
|
||||
String currentDirectory = System.getProperty("user.dir");
|
||||
@ -337,7 +338,16 @@ public class Base {
|
||||
continue;
|
||||
}
|
||||
if (args[i].equals("--verbose") || args[i].equals("-v")) {
|
||||
doVerbose = true;
|
||||
doVerboseBuild = true;
|
||||
doVerboseUpload = true;
|
||||
continue;
|
||||
}
|
||||
if (args[i].equals("--verbose-build")) {
|
||||
doVerboseBuild = true;
|
||||
continue;
|
||||
}
|
||||
if (args[i].equals("--verbose-upload")) {
|
||||
doVerboseUpload = true;
|
||||
continue;
|
||||
}
|
||||
if (args[i].equals("--board")) {
|
||||
@ -414,8 +424,8 @@ public class Base {
|
||||
|
||||
if (doUpload || doVerify) {
|
||||
// Set verbosity for command line build
|
||||
Preferences.set("build.verbose", "" + doVerbose);
|
||||
Preferences.set("upload.verbose", "" + doVerbose);
|
||||
Preferences.set("build.verbose", "" + doVerboseBuild);
|
||||
Preferences.set("upload.verbose", "" + doVerboseUpload);
|
||||
|
||||
Editor editor = editors.get(0);
|
||||
|
||||
|
@ -86,12 +86,21 @@ OPTIONS
|
||||
If this option is not passed, the value from the current
|
||||
preferences is used (e.g., the last port selected in the IDE).
|
||||
|
||||
*-v, --verbose*::
|
||||
|
||||
Enable verbose mode during build and upload. If this option is
|
||||
not given, verbose mode is disabled regardless of the current
|
||||
*--verbose-build*::
|
||||
Enable verbose mode during build. If this option is not given,
|
||||
verbose mode during build is disabled regardless of the current
|
||||
preferences.
|
||||
|
||||
*--verbose-upload*::
|
||||
Enable verbose mode during upload. If this option is not given,
|
||||
verbose mode during upload is disabled regardless of the current
|
||||
preferences.
|
||||
|
||||
*-v, --verbose*::
|
||||
Enable verbose mode during build and upload.
|
||||
This option has the same effect of using both *--verbose-build*
|
||||
and *--verbose-upload*.
|
||||
|
||||
*--preferences-file* __filename__::
|
||||
Read and store preferences from the specified __filename__ instead
|
||||
of the default one.
|
||||
|
Loading…
Reference in New Issue
Block a user