Change rsync not to sync build directory

This commit is contained in:
Kacper Donat 2020-06-07 18:36:29 +02:00
parent 687902ca20
commit 5e437ff8c7

View File

@ -2,5 +2,5 @@ BUILD_PATH=$1
DEPLOY_PATH=$2
# copy all dist files to deploy path
rsync $BUILD_PATH/build $DEPLOY_PATH
rsync -avz $BUILD_PATH/build/* $DEPLOY_PATH