fix broken output of script/server
This commit is contained in:
parent
c95dd68545
commit
8dcc5fafef
1 changed files with 2 additions and 2 deletions
|
|
@ -120,7 +120,7 @@ then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Check if assets are precompiled
|
# 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
|
then
|
||||||
fatal "You're running in production mode without having assets
|
fatal "You're running in production mode without having assets
|
||||||
precompiled. Now and after each update before you restart the
|
precompiled. Now and after each update before you restart the
|
||||||
|
|
@ -159,7 +159,7 @@ diaspora.yml.example
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Start Diaspora
|
# 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" ]
|
if [ "$embed_sidekiq_worker" = "true" ]
|
||||||
then
|
then
|
||||||
echo "with a Sidekiq worker embedded into Unicorn."
|
echo "with a Sidekiq worker embedded into Unicorn."
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue