2016-09-29 17:08:25 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2017-02-21 13:00:07 +01:00
|
|
|
set -e # error out when one of the commands in the script errors.
|
2016-09-29 17:08:25 +02:00
|
|
|
|
2017-03-10 09:52:58 +01:00
|
|
|
if [ -z "$1" ]; then
|
|
|
|
echo "Usage: $0 {host-to-deploy-to}" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
DEPLOYHOST="$1"
|
|
|
|
|
2016-12-01 12:23:23 +01:00
|
|
|
# macOS does not support readlink -f, so we use greadlink instead
|
|
|
|
if [[ `uname` == 'Darwin' ]]; then
|
2016-12-01 13:00:03 +01:00
|
|
|
command -v greadlink 2>/dev/null 2>&1 || { echo >&2 "Install greadlink using brew."; exit 1; }
|
2016-12-01 12:41:47 +01:00
|
|
|
readlink='greadlink'
|
2016-12-01 12:23:23 +01:00
|
|
|
else
|
|
|
|
readlink='readlink'
|
|
|
|
fi
|
|
|
|
|
|
|
|
ATTRACT_DIR="$(dirname "$($readlink -f "$0")")"
|
2016-09-29 17:08:25 +02:00
|
|
|
if [ ! -d "$ATTRACT_DIR" ]; then
|
|
|
|
echo "Unable to find Attract dir '$ATTRACT_DIR'"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
ASSETS="$ATTRACT_DIR/attract/static/assets/"
|
|
|
|
TEMPLATES="$ATTRACT_DIR/attract/templates/attract"
|
|
|
|
|
|
|
|
if [ ! -d "$ASSETS" ]; then
|
|
|
|
echo "Unable to find assets dir $ASSETS"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd $ATTRACT_DIR
|
|
|
|
if [ $(git rev-parse --abbrev-ref HEAD) != "production" ]; then
|
|
|
|
echo "You are NOT on the production branch, refusing to rsync_ui." >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo
|
|
|
|
echo "*** GULPA GULPA ***"
|
|
|
|
./gulp --production
|
|
|
|
|
|
|
|
echo
|
|
|
|
echo "*** SYNCING ASSETS ***"
|
|
|
|
# Exclude files managed by Git.
|
2017-03-10 09:52:58 +01:00
|
|
|
rsync -avh $ASSETS --exclude js/vendor/ root@${DEPLOYHOST}:/data/git/attract/attract/static/assets/
|
2016-09-29 17:08:25 +02:00
|
|
|
|
|
|
|
echo
|
|
|
|
echo "*** SYNCING TEMPLATES ***"
|
2017-03-10 09:52:58 +01:00
|
|
|
rsync -avh $TEMPLATES root@${DEPLOYHOST}:/data/git/attract/attract/templates/
|