From 2047cad9224c328a2b421aae644ff23102d32f19 Mon Sep 17 00:00:00 2001 From: Pierre Cauchois Date: Wed, 30 Nov 2016 15:59:36 -0800 Subject: [PATCH] Fix build scripts missing links --- build/dev-setup.cmd | 3 +++ build/dev-setup.sh | 5 ++++- build/dev-teardown.cmd | 3 +++ build/dev-teardown.sh | 3 +++ build/tools/package.json | 2 +- 5 files changed, 14 insertions(+), 2 deletions(-) diff --git a/build/dev-setup.cmd b/build/dev-setup.cmd index 04e02904d..349976c12 100644 --- a/build/dev-setup.cmd +++ b/build/dev-setup.cmd @@ -82,6 +82,9 @@ echo. echo -- Creating links for %cd% -- call npm link azure-iot-common call npm link azure-iot-device +call npm link azure-iot-device-amqp +call npm link azure-iot-device-http +call npm link azure-iot-device-mqtt call npm link azure-iothub call npm install diff --git a/build/dev-setup.sh b/build/dev-setup.sh index f86c03227..a0e4fe33b 100755 --- a/build/dev-setup.sh +++ b/build/dev-setup.sh @@ -73,10 +73,13 @@ npm link azure-iot-device-mqtt npm link azure-iothub npm install -cd $node_root/../tools/iothub-explorer +cd $node_root/tools/iothub-explorer echo "\n-- Creating links for `pwd` --" npm link azure-iot-common npm link azure-iot-device +npm link azure-iot-device-amqp +npm link azure-iot-device-http +npm link azure-iot-device-mqtt npm link azure-iothub npm install [ $? -eq 0 ] || exit $? diff --git a/build/dev-teardown.cmd b/build/dev-teardown.cmd index 1b16ae184..889b1cae7 100644 --- a/build/dev-teardown.cmd +++ b/build/dev-teardown.cmd @@ -16,6 +16,9 @@ call npm rm azure-iothub cd %node-root%\..\tools\iothub-explorer echo -- Removing links for %cd% -- call npm rm azure-iothub +call npm rm azure-iot-device-mqtt +call npm rm azure-iot-device-http +call npm rm azure-iot-device-amqp call npm rm azure-iot-device call npm rm azure-iot-common diff --git a/build/dev-teardown.sh b/build/dev-teardown.sh index e30bff596..39baafb24 100755 --- a/build/dev-teardown.sh +++ b/build/dev-teardown.sh @@ -12,6 +12,9 @@ npm rm azure-iothub cd $node_root/../tools/iothub-explorer echo "-- Removing links for `pwd` --" npm rm azure-iothub +npm rm azure-iot-device-mqtt +npm rm azure-iot-device-http +npm rm azure-iot-device-amqp npm rm azure-iot-device npm rm azure-iot-common diff --git a/build/tools/package.json b/build/tools/package.json index 9cb5382ed..66ef8dee3 100644 --- a/build/tools/package.json +++ b/build/tools/package.json @@ -19,7 +19,7 @@ }, "homepage": "https://github.com/azure/azure-iot-sdks#readme", "dependencies": { - "azure-iothub": "1.1.0", + "azure-iothub": "1.1.1", "chalk": "^1.1.3", "pem": "^1.8.3", "yargs": "^4.7.1"