From 7bd6280292c13851c180e3a7b750f1f6145fc842 Mon Sep 17 00:00:00 2001 From: Michal Moskal Date: Fri, 5 Jan 2018 16:17:20 +0000 Subject: [PATCH] Disable HID deploy from command line (seems broken; was crashing until my previous checkin) --- editor/deploy.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/editor/deploy.ts b/editor/deploy.ts index 4a3f20b7..6a448402 100644 --- a/editor/deploy.ts +++ b/editor/deploy.ts @@ -29,7 +29,8 @@ export function initAsync() { let canHID = false if (pxt.U.isNodeJS) { - canHID = true + // doesn't seem to work ATM + canHID = false } else { const forceHexDownload = /forceHexDownload/i.test(window.location.href); if (pxt.Cloud.isLocalHost() && pxt.Cloud.localToken && !forceHexDownload)