From c19223b7fe79008cd7140f3a3f2bc0aae20292a2 Mon Sep 17 00:00:00 2001 From: Asher Date: Wed, 21 Aug 2019 11:30:41 -0500 Subject: [PATCH] Fix error when building without first running yarn --- scripts/tasks.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tasks.bash b/scripts/tasks.bash index 5e7cae31..ce5e32e9 100755 --- a/scripts/tasks.bash +++ b/scripts/tasks.bash @@ -56,7 +56,7 @@ function prepend-loader() { # Copy code-server into VS Code then build it. function build-code-server() { copy-server - yarn gulp compile-build --max-old-space-size=32384 + cd "${sourcePath}" && yarn gulp compile-build --max-old-space-size=32384 local min="" if [[ -n "${minify}" ]] ; then