mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-20 21:01:25 +03:00
Fixed verbose upload. Removed unused platform.txt params.
This commit is contained in:
@ -102,11 +102,11 @@ public abstract class Uploader implements MessageConsumer {
|
||||
int result=0; // pre-initialized to quiet a bogus warning from jikes
|
||||
|
||||
try {
|
||||
if (verbose || Preferences.getBoolean("upload.verbose")) {
|
||||
for(int i = 0; i < commandArray.length; i++) {
|
||||
System.out.print(commandArray[i] + " ");
|
||||
}
|
||||
System.out.println();
|
||||
if (verbose || Preferences.getBoolean("upload.verbose")) {
|
||||
}
|
||||
Process process = Runtime.getRuntime().exec(commandArray);
|
||||
new MessageSiphon(process.getInputStream(), this);
|
||||
|
Reference in New Issue
Block a user