From 16ea6f8f17c8f8b5959e626dc4e9808d9288dae6 Mon Sep 17 00:00:00 2001 From: Rory Stokes Date: Tue, 2 Mar 2021 10:17:06 +1030 Subject: [PATCH] Invoke postinstall script directly using node to avoid issue with paths in windows (#539) --- 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" } }