Files
vps/publish.prod

16 lines
204 B
Bash
Executable File

#!/bin/bash
DBG_DIR=/var/www/dbg
DST_DIR=/var/www/html
# Remove current prod
rm -fR $DST_DIR
# Copy dbg to prod
rsync -aivc --delete $DBG_DIR/ $DST_DIR
# Symlink
cd $DST_DIR
ln -s ../cbr
ln -s ../dbg