File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,8 @@ boolean YunMQTTClient::installBridge(boolean force) {
20
20
Process p;
21
21
22
22
int r1 = p.runShellCommand (" mkdir -p /usr/mqtt" );
23
- // shortened: https://raw.githubusercontent.com/256dpi/arduino-mqtt/yun-bridge/yun/mqtt.py
24
- int r2 = p.runShellCommand (" wget http://bit.ly/1aX4HVu --no-check-certificate -O /usr/mqtt/mqtt.py" );
25
- // shortened: https://raw.githubusercontent.com/256dpi/arduino-mqtt/yun-bridge/yun/bridge.py
26
- int r3 = p.runShellCommand (" wget http://bit.ly/1IXBeFe --no-check-certificate -O /usr/mqtt/bridge.py" );
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" );
27
25
28
26
return r1 == 0 && r2 == 0 && r3 == 0 ;
29
27
}
You can’t perform that action at this time.
0 commit comments