aboutsummaryrefslogtreecommitdiffstats
path: root/coin/provisioning
diff options
context:
space:
mode:
authorMaurice Kalinowski <maurice.kalinowski@qt.io>2018-08-02 08:01:21 +0200
committerSimon Hausmann <simon.hausmann@qt.io>2018-08-04 12:12:00 +0000
commitf2fae0b7b18200a997f936f67597d4524613e182 (patch)
tree5392adc60c4e32c8274911e4d5a680f9a3af6d0f /coin/provisioning
parent814b318048a1c07e78c8c35a2654b6842915a916 (diff)
Provisioning: MQTT: Switch download order
We should try the internal ones first. Change-Id: Id0bb3c00e0a1359004f66435a452c30ee4997689 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'coin/provisioning')
-rw-r--r--coin/provisioning/common/windows/mqtt_broker.ps14
1 files changed, 2 insertions, 2 deletions
diff --git a/coin/provisioning/common/windows/mqtt_broker.ps1 b/coin/provisioning/common/windows/mqtt_broker.ps1
index 7cb8dd7c..be666ac8 100644
--- a/coin/provisioning/common/windows/mqtt_broker.ps1
+++ b/coin/provisioning/common/windows/mqtt_broker.ps1
@@ -38,8 +38,8 @@ $zip = Get-DownloadLocation "pahotest.zip"
$commitSHA = "ef4dbc182ddd06247e4b2618d5ad0a57df12ab25"
$sha1 = "ba2b7d05afe4e13446d40cd4e753dda7f325a587"
-$externalUrl = "http://ci-files01-hki.ci.local/input/mqtt_broker/paho.mqtt.testing-$commitSHA.zip"
-$internalUrl = "https://github.com/eclipse/paho.mqtt.testing/archive/$commitSHA.zip"
+$internalUrl = "http://ci-files01-hki.ci.local/input/mqtt_broker/paho.mqtt.testing-$commitSHA.zip"
+$externalUrl = "https://github.com/eclipse/paho.mqtt.testing/archive/$commitSHA.zip"
Download $externalUrl $internalUrl $zip
Verify-Checksum $zip $sha1