7 lines
112 B
Bash
Executable File
7 lines
112 B
Bash
Executable File
BUILD_PATH=$1
|
|
DEPLOY_PATH=$2
|
|
|
|
# copy all dist files to deploy path
|
|
rsync -avz $BUILD_PATH/build/* $DEPLOY_PATH
|
|
|