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:
commit
b816124bbc
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue