mirror of https://github.com/status-im/consul.git
Moves the static assets into a subfolder where index.html expects them.
This commit is contained in:
parent
458f1639a0
commit
be4d2ff659
|
@ -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…
Reference in New Issue