From 638ab7c5573fe27f2849cc3ae84ef49b33b84c7d Mon Sep 17 00:00:00 2001 From: Anmol Sethi Date: Wed, 22 Jul 2020 18:31:24 -0400 Subject: [PATCH] Fix CI --- ci/build/npm-postinstall.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/build/npm-postinstall.sh b/ci/build/npm-postinstall.sh index 127d6408..09b13013 100755 --- a/ci/build/npm-postinstall.sh +++ b/ci/build/npm-postinstall.sh @@ -35,7 +35,8 @@ vscode_yarn() { cd lib/vscode yarn --production --frozen-lockfile cd extensions - yarn --production --frozen-lockfile + # Cannot use --production here. The postinstall here uses a dev dependency. + yarn --frozen-lockfile } main "$@" -- GitLab