mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
Check the status of the assets' compilation during the upgrade
This commit is contained in:
parent
9355256909
commit
2a4a4e6d74
@ -6,6 +6,7 @@
|
|||||||
- Improved error handling in upgrade script
|
- Improved error handling in upgrade script
|
||||||
- Improved the development and production documentations
|
- Improved the development and production documentations
|
||||||
- Improved the style of the titles of the subscription page
|
- Improved the style of the titles of the subscription page
|
||||||
|
- Check the status of the assets' compilation during the upgrade
|
||||||
- Fix a bug: build status badge is not working
|
- Fix a bug: build status badge is not working
|
||||||
- Fix a bug: unable to set date formats during installation
|
- Fix a bug: unable to set date formats during installation
|
||||||
- Fix a bug: unable to cancel the upgrade before it begins
|
- Fix a bug: unable to cancel the upgrade before it begins
|
||||||
|
@ -126,7 +126,10 @@ compile_assets()
|
|||||||
PG_NET_ID=$(docker inspect "$PG_ID" -f "{{json .NetworkSettings.Networks }}" | jq -r '.[] .NetworkID')
|
PG_NET_ID=$(docker inspect "$PG_ID" -f "{{json .NetworkSettings.Networks }}" | jq -r '.[] .NetworkID')
|
||||||
clean_env_file
|
clean_env_file
|
||||||
# shellcheck disable=SC2068
|
# shellcheck disable=SC2068
|
||||||
docker run --rm --env-file ./config/env ${ENV_ARGS[@]} --link "$PG_ID" --net "$PG_NET_ID" -v "${PWD}/public/new_packs:/usr/src/app/public/packs" "$IMAGE" bundle exec rake assets:precompile
|
if ! docker run --rm --env-file ./config/env ${ENV_ARGS[@]} --link "$PG_ID" --net "$PG_NET_ID" -v "${PWD}/public/new_packs:/usr/src/app/public/packs" "$IMAGE" bundle exec rake assets:precompile; then
|
||||||
|
printf "\e[91m[ ❌ ] Something went wrong while compiling the assets, please check the logs above.\e[39m\nExiting...\n"
|
||||||
|
exit 4
|
||||||
|
fi
|
||||||
docker-compose down
|
docker-compose down
|
||||||
rm -rf public/packs
|
rm -rf public/packs
|
||||||
mv public/new_packs public/packs
|
mv public/new_packs public/packs
|
||||||
|
Loading…
Reference in New Issue
Block a user