Browse Source

Merge pull request #1354 from hashicorp/b-static

Moves the static assets into a subfolder where index.html expects them.
pull/1357/head
James Phillips 9 years ago
parent
commit
d352960cef
  1. 4
      ui/scripts/dist.sh

4
ui/scripts/dist.sh

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

Loading…
Cancel
Save