diff --git a/Changelog.md b/Changelog.md index f30111967baffdd0d8514b7e998a5c3062063c5a..d0768e281be3e7ef411873e393918c258bf8ef7a 100644 --- a/Changelog.md +++ b/Changelog.md @@ -176,6 +176,7 @@ diaspora* no longer adds a `div.container` to wrap custom splash pages. This add * Fix pagination design on conversations page [#5791](https://github.com/diaspora/diaspora/pull/5791) * Prevent inserting posts into the wrong stream [#5838](https://github.com/diaspora/diaspora/pull/5838) * Update help section [#5857](https://github.com/diaspora/diaspora/pull/5857) +* Fix asset precompilation check in script/server [#5863](https://github.com/diaspora/diaspora/pull/5863) ## Features * Don't pull jQuery from a CDN by default [#5105](https://github.com/diaspora/diaspora/pull/5105) diff --git a/script/server b/script/server index 46b17b90d4acec0da6baede5f577adfea11b1b4a..d99c33056a7f0bab415fecf8bdf095bd491b8236 100755 --- a/script/server +++ b/script/server @@ -120,7 +120,7 @@ then fi # Check if assets are precompiled -if [ "$RAILS_ENV" = "production" -a -z "$(find public/assets -maxdepth 1 -name 'default-*.css' -print -quit)" ] +if [ "$RAILS_ENV" = "production" -a -z "$(find public/assets -maxdepth 1 -name 'home-*.css' -print -quit)" ] then fatal "You're running in production mode without having assets precompiled. Now and after each update before you restart the