7 lines
104 B
Bash
7 lines
104 B
Bash
BUILD_PATH=$1
|
|
DEPLOY_PATH=$2
|
|
|
|
# copy all dist files to deploy path
|
|
rsync $BUILD_PATH/dist $DEPLOY_PATH
|
|
|