mirror of
https://github.com/BBaoVanC/bbaovanc.com.git
synced 2025-07-05 03:27:33 -05:00
6 lines
241 B
Bash
Executable File
6 lines
241 B
Bash
Executable File
#!/bin/sh -ex
|
|
[ -z "$1" ] && echo "Please give a demo name" && exit 1
|
|
./audit.sh
|
|
DEST=public.demo/ ./build.sh --baseURL "https://demo.bbaovanc.com/test/$1"
|
|
rsync -avPzc --delete-delay public.demo/ bbaosrv:/var/www/demo.bbaovanc.com/test/$1/
|