From 2a0f08cf6984d58239865cbc4aee4b6019713eb9 Mon Sep 17 00:00:00 2001 From: strangelife Date: Thu, 29 Oct 2020 22:44:59 +0800 Subject: [PATCH] node*: fix pnpm global install (#1536) --- bucket/node-chakracore.json | 4 ++-- bucket/nodejs-lts.json | 4 ++-- bucket/nodejs.json | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bucket/node-chakracore.json b/bucket/node-chakracore.json index fb65500e1f..038a23462c 100644 --- a/bucket/node-chakracore.json +++ b/bucket/node-chakracore.json @@ -20,8 +20,8 @@ "cache" ], "env_add_path": [ - ".", - "bin" + "bin", + "." ], "post_install": [ "# Set npm prefix to install modules inside bin and npm cache so they persist", diff --git a/bucket/nodejs-lts.json b/bucket/nodejs-lts.json index 7688ade40c..9c8cc0ddc4 100644 --- a/bucket/nodejs-lts.json +++ b/bucket/nodejs-lts.json @@ -20,8 +20,8 @@ "cache" ], "env_add_path": [ - ".", - "bin" + "bin", + "." ], "post_install": [ "# Set npm prefix to install modules inside bin and npm cache so they persist", diff --git a/bucket/nodejs.json b/bucket/nodejs.json index f7d4997143..d16ccd47bc 100644 --- a/bucket/nodejs.json +++ b/bucket/nodejs.json @@ -20,8 +20,8 @@ "cache" ], "env_add_path": [ - ".", - "bin" + "bin", + "." ], "post_install": [ "# Set npm prefix to install modules inside bin and npm cache so they persist",