TEW-0x00/deploy
surtur 7b0c41f778
All checks were successful
continuous-integration/drone/push Build is passing
feat: add FiraCode webfont
2020-05-22 12:02:54 +02:00

23 lines
470 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 fonts \
roundedcorners backgroundgradient shadows \
2Dtransforms 3Dtransforms transitions animations \
multiplecolumns boxsizing flexbox \
../tew_0x00/public
if [ $USER = $USR ]; then
rsync -av --delete public/ ${PUBDIR}
else
rsync -avz --delete public/ ${USR}@${HOST}:${PUBDIR}
fi
exit 0