From c6da122e4163b140eb46512d9481702eaf3bb77b Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Mon, 17 Sep 2018 17:57:27 -0600 Subject: [PATCH] Fix npm link in the build script --- scripts/fetch-develop.deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fetch-develop.deps.sh b/scripts/fetch-develop.deps.sh index 00df2db730..57eda6ebd9 100755 --- a/scripts/fetch-develop.deps.sh +++ b/scripts/fetch-develop.deps.sh @@ -52,7 +52,7 @@ function dodep() { echo "$repo set to branch "`git -C "$repo" rev-parse --abbrev-ref HEAD` mkdir -p node_modules - npm link "../$repo" # This does an npm install for us + npm link "./$repo" # This does an npm install for us } ##############################