From 3fc5b5a140410fd6edc49d33aabc3b644371096c Mon Sep 17 00:00:00 2001 From: iamkun Date: Wed, 3 Apr 2019 16:03:47 +0800 Subject: [PATCH] fix: Fix faas deploy mkdir error (#14952) --- build/deploy-faas.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/deploy-faas.sh b/build/deploy-faas.sh index 04a40f5da..b9f2ad525 100644 --- a/build/deploy-faas.sh +++ b/build/deploy-faas.sh @@ -7,7 +7,7 @@ git clone --depth 1 -b gh-pages --single-branch https://github.com/ElemeFE/eleme # build sub folder SUB_FOLDER='2.7' -mkdir $SUB_FOLDER +mkdir -p $SUB_FOLDER rm -rf *.js *.css *.map static rm -rf $SUB_FOLDER/** cp -rf ../../examples/element-ui/** .