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

ISTWCMS-3759: updating build gesso script to point to the correct source directory

parent 07461ffa
No related branches found
No related tags found
No related merge requests found
...@@ -4,8 +4,6 @@ git clone "https://github.com/forumone/gesso" "gesso" ...@@ -4,8 +4,6 @@ git clone "https://github.com/forumone/gesso" "gesso"
cd gesso cd gesso
git checkout $gesso_version git checkout $gesso_version
ln -s "../source" "source"
cd .. cd ..
if [ -f "gulpfile.js" ]; then if [ -f "gulpfile.js" ]; then
...@@ -31,6 +29,15 @@ cd gesso ...@@ -31,6 +29,15 @@ cd gesso
npm install npm install
echo "Done npm install." echo "Done npm install."
echo "Symbolic linking source directory ..."
if [ -d "source" ]; then
echo "Removing old source directory ..."
rm -rf source
echo "Done removing old source directory ..."
fi
ln --force --symbolic "../source" source
echo "Done symbolic linking source directory ..."
echo "Removing style lint config and replacing with UW config ..." echo "Removing style lint config and replacing with UW config ..."
rm .stylelintrc.yml rm .stylelintrc.yml
cp ../.stylelintrc.yml . cp ../.stylelintrc.yml .
......
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