Newer
Older
build_option=${1:-1}
git clone "https://github.com/forumone/gesso" "gesso"
ln -s "../source" "source"
if [ -f "gulpfile.js" ]; then
Eric Bremner
committed
cp gulpfile.js gesso
fi
if [ -f "package.json" ]; then
cp package.json gesso
fi
echo "Removing Gesso files"
rm gesso.layouts.yml
rm gesso.info.yml
rm gesso.libraries.yml
rm gesso.breakpoints.yml
rm Dockerfile
rm screenshot.png
rm -rf templates
echo "Done removing gesso theme files."
cd gesso
echo "Removing style lint config and replacing with UW config ..."
rm .stylelintrc.yml
cp ../.stylelintrc.yml .
echo "Done removing style lint config and replacing with UW config"
Eric Bremner
committed
echo "Running gulp build ..."
gulp build
echo "Done running gulp build."