From 6a80578d057d434da988c7907761773bf6033abd Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Wed, 11 May 2016 10:11:59 -0700 Subject: [PATCH] build: create the dist directory before building --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 187b46496d..8b93a2f124 100755 --- a/build.sh +++ b/build.sh @@ -8,7 +8,7 @@ cd `dirname $0` TSCONFIG=./modules/tsconfig.json echo "====== (all)COMPILING: \$(npm bin)/tsc -p ${TSCONFIG} =====" rm -rf ./dist/all/ -mkdir ./dist/all/ +mkdir -p ./dist/all/ # prepare all files for e2e tests cp -r ./modules/playground ./dist/all/