Skip to content

Commit f5a0d53

Browse files
committed
Revert "shortened urls"
This reverts commit 8a41557.
1 parent 8a41557 commit f5a0d53

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/YunMQTTClient.cpp

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

2222
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");
2725

2826
return r1 == 0 && r2 == 0 && r3 == 0;
2927
}

0 commit comments

Comments
 (0)