Skip to content
Snippets Groups Projects
Commit 825e54f0 authored by Eric Bremner's avatar Eric Bremner
Browse files

ISTWCMS-3759: updating build gesso script to move packages and gulpfile

parent 633ff724
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,17 @@ git clone "https://github.com/forumone/gesso" "gesso" ...@@ -4,7 +4,17 @@ git clone "https://github.com/forumone/gesso" "gesso"
cd gesso cd gesso
git checkout $gesso_version git checkout $gesso_version
cd .. cd ..
ln -s "source" "gesso/source"
if [ -f "gulpfile.js" ]; then
mv gulpfile.js gesso
fi
if [ -f "packages.json" ]; then
mv packages.json gesso
fi
ln -s "gesso/source" "source"
echo "Removing Gesso files" echo "Removing Gesso files"
rm gesso.layouts.yml rm gesso.layouts.yml
rm gesso.info.yml rm gesso.info.yml
...@@ -16,6 +26,7 @@ rm -rf templates ...@@ -16,6 +26,7 @@ rm -rf templates
echo "Done removing gesso theme files." echo "Done removing gesso theme files."
echo "Running npm install ..." echo "Running npm install ..."
cd gesso
npm install npm install
echo "Done npm install." echo "Done npm install."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment