Merge pull request #1354 from hashicorp/b-static

Moves the static assets into a subfolder where index.html expects them.
This commit is contained in:
James Phillips 2015-10-27 20:26:34 -07:00
commit b816124bbc
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ bundle exec ruby scripts/compile.rb
# Copy into deploy
shopt -s dotglob
cp -r $DIR/static/* $DEPLOY/
cp -r $DIR/static $DEPLOY/
cp index.html $DEPLOY/
# Magic scripting
@ -33,5 +33,5 @@ sed -E -e "s#<\/body>#<script src=\"static/application.min.js\"></script></body>
rm $DEPLOY/index.htmlbak
pushd $DEPLOY >/dev/null 2>&1
zip ../web_ui.zip ./*
zip -r ../web_ui.zip ./*
popd >/dev/null 2>&1