Skip to content

Commit 172007b

Browse files
author
Federico Fissore
committed
renamed two lua scripts
1 parent 6eec8e0 commit 172007b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/src/cc/arduino/packages/uploaders/SSHUploader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ private boolean runAVRDude(SSH ssh) throws IOException, JSchException {
9797

9898
String additionalParams = verbose ? prefs.get("upload.params.verbose") : prefs.get("upload.params.quiet");
9999

100-
boolean success = ssh.execSyncCommand("merge-sketch-with-bootloader /tmp/sketch.hex", System.out, System.err);
100+
boolean success = ssh.execSyncCommand("merge-sketch-with-bootloader.lua /tmp/sketch.hex", System.out, System.err);
101101
ssh.execSyncCommand("kill-bridge");
102102
success = success && ssh.execSyncCommand("run-avrdude /tmp/sketch.hex '" + additionalParams + "'", System.out, System.err);
103103
return success;

hardware/arduino/avr/libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void setup() {
3232
void loop() {
3333
Process wifiCheck; // initialize a new process
3434

35-
wifiCheck.runShellCommand("lua /arduino/pretty_wifi_info.lua"); // command you want to run
35+
wifiCheck.runShellCommand("/usr/bin/pretty-wifi-info.lua"); // command you want to run
3636

3737
// while there's any characters coming back from the
3838
// process, print them to the serial monitor:

0 commit comments

Comments
 (0)