TEW-0x00/deploy
surtur df44f1d083
All checks were successful
continuous-integration/drone/push Build is passing
added multiple columns subpage + styling
* updated deploy script and hyperlinks accordingly
2020-04-01 00:02:31 +02:00

23 lines
446 B
Bash

#!/bin/bash
USR=dotyaoverlord
HOST=dotya.ml
PUBDIR=$HOME/tew_0x00public/
rm -rfv ../tew_0x00/public
mkdir -pv ../tew_0x00/public
rsync -av index.html scripts css media \
roundedcorners backgroundgradient shadows \
2Dtransforms 3Dtransforms transitions animations \
multiplecolumns \
../tew_0x00/public
if [ $USER = $USR ]; then
rsync -av --delete public/ ${PUBDIR}
else
rsync -avz --delete public/ ${USR}@${HOST}:${PUBDIR}
fi
exit 0