Skip to content

Commit faf6b34

Browse files
committed
fixed bug
1 parent f5a0d53 commit faf6b34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/YunMQTTClient.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ boolean YunMQTTClient::installBridge(boolean force) {
2020
Process p;
2121

2222
int r1 = p.runShellCommand("mkdir -p /usr/mqtt");
23-
int r2 = p.runShellCommand("wget https://raw.githubusercontent.com/256dpi/arduino-mqtt/yun/mqtt.py --no-check-certificate -O /usr/mqtt/mqtt.py");
24-
int r3 = p.runShellCommand("wget https://raw.githubusercontent.com/256dpi/arduino-mqtt/yun/bridge.py --no-check-certificate -O /usr/mqtt/bridge.py");
23+
int r2 = p.runShellCommand("wget https://raw.githubusercontent.com/256dpi/arduino-mqtt/master/yun/mqtt.py --no-check-certificate -O /usr/mqtt/mqtt.py");
24+
int r3 = p.runShellCommand("wget https://raw.githubusercontent.com/256dpi/arduino-mqtt/master/yun/bridge.py --no-check-certificate -O /usr/mqtt/bridge.py");
2525

2626
return r1 == 0 && r2 == 0 && r3 == 0;
2727
}

0 commit comments

Comments
 (0)