From 24fd768cb3659c06825eee1d77a57e32c233cc83 Mon Sep 17 00:00:00 2001 From: Rory Stokes Date: Thu, 25 Feb 2021 18:20:11 +1030 Subject: [PATCH] Invoke postinstall script directly using node to avoid issue with paths in windows --- node-support/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-support/package.json b/node-support/package.json index 80eb23a2..1d9a91b3 100644 --- a/node-support/package.json +++ b/node-support/package.json @@ -77,6 +77,6 @@ "jsdoc": "jsdoc -c jsdoc.json", "test": "mocha --recursive", "prepare": "bin/prepare.sh", - "postinstall": "bin/download-protoc.js" + "postinstall": "node bin/download-protoc.js" } }