Newer
Older
build_option=${1:-1}
git clone "https://github.com/forumone/gesso" "gesso"
cd gesso
rm -rf "source"
ln -s "../source"
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 gess theme files."
if [ ${build_option} = 3 ] || [ ${build_option} = 4 ]; then
echo "Running npm install ..."
npm install
echo "Done npm install."
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."
fi