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