blob: 1b7a608035531cdca816f22a94a8f6140f0c403b [file] [log] [blame]
#!/bin/sh
# This script copies the build outputs produced by `pub build` to
# the deployed directory.
if [ ! -d "build" ]; then
echo "Please run pub build first"
exit
fi
if [ ! -d "deployed" ]; then
echo "Run this script from the observatory directory"
exit
fi
EXCLUDE="--exclude bootstrap_css"
EXCLUDE="$EXCLUDE --exclude *.map"
EXCLUDE="$EXCLUDE --exclude *.concat.js"
EXCLUDE="$EXCLUDE --exclude *.scriptUrls"
EXCLUDE="$EXCLUDE --exclude *.precompiled.js"
EXCLUDE="$EXCLUDE --exclude main.*"
EXCLUDE="$EXCLUDE --exclude unittest"
rsync -av --progress build/web/ deployed/web/ $EXCLUDE