diff --git a/Changelog.md b/Changelog.md index 5166847e7be3105beae137da06800c63d53df90c..15ee854833e7c3a5f69a566628c22d0191b1d9a2 100644 --- a/Changelog.md +++ b/Changelog.md @@ -11,6 +11,7 @@ * Hide manage services link in the publisher on certain pages [#5854](https://github.com/diaspora/diaspora/pull/5854) * Fix notification mails for limited posts [#5877](https://github.com/diaspora/diaspora/pull/5877) * Fix medium and small avatar URLs when using Camo [#5883](https://github.com/diaspora/diaspora/pull/5883) +* Improve output of script/server [#5885](https://github.com/diaspora/diaspora/pull/5885) ## Features * Hide post title of limited post in comment notification email [#5843](https://github.com/diaspora/diaspora/pull/5843) diff --git a/script/server b/script/server index d99c33056a7f0bab415fecf8bdf095bd491b8236..1039c674ba5d9309c15fe07eb55f891a85b769bf 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 'home-*.css' -print -quit)" ] +if [ "$RAILS_ENV" = "production" -a -z "$(find public/assets -maxdepth 1 -name 'home-*.css' -print -quit 2>/dev/null)" ] then fatal "You're running in production mode without having assets precompiled. Now and after each update before you restart the @@ -159,7 +159,7 @@ diaspora.yml.example fi # Start Diaspora -echo -n "Starting Diaspora in $RAILS_ENV mode on port $port " +printf "Starting Diaspora in $RAILS_ENV mode on port $port " if [ "$embed_sidekiq_worker" = "true" ] then echo "with a Sidekiq worker embedded into Unicorn."