diff options
| author | Jean-Baptiste Holcroft <jean-baptiste@holcroft.fr> | 2018-05-01 20:44:54 +0200 |
|---|---|---|
| committer | Jean-Baptiste Holcroft <jean-baptiste@holcroft.fr> | 2018-05-01 20:44:54 +0200 |
| commit | 3004a1c0414e691ed2c771a5200c6359028a8e5e (patch) | |
| tree | a06420b4a7c5dc3570c80a4357b70f3adf36bd5e /scripts | |
| parent | 5799993dc4211f1732c8d78677c0c2a1063678b0 (diff) | |
| download | mastodon_ynh-3004a1c0414e691ed2c771a5200c6359028a8e5e.tar.gz mastodon_ynh-3004a1c0414e691ed2c771a5200c6359028a8e5e.tar.bz2 mastodon_ynh-3004a1c0414e691ed2c771a5200c6359028a8e5e.zip | |
Try to limit the log
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/install | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/install b/scripts/install index 56b8ef8..8e505e7 100644 --- a/scripts/install +++ b/scripts/install @@ -103,7 +103,7 @@ ynh_install_app_dependencies \ `# redis ` \ redis-server redis-tools \ `# postgresql ` \ - postgresql postgresql-contrib postgresql-server-dev-9.4 \ + postgresql \ `# Ruby ` \ autoconf bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm3 libgdbm-dev \ `# ffmpeg from backports ` \ @@ -215,12 +215,12 @@ sed -i "s@#SMTP_OPENSSL_VERIFY_MODE=peer@SMTP_OPENSSL_VERIFY_MODE=none@g" "${fin cd "$final_path/live" su mastodon <<INSTALL $final_path/.rbenv/versions/2.5.0/bin/gem install bundler -$final_path/live/bin/bundle install -j$(getconf _NPROCESSORS_ONLN) --deployment --without development test -yarn install --production --no-progress --non-interactive +$final_path/live/bin/bundle install -j$(getconf _NPROCESSORS_ONLN) --deployment --without development test --quiet +yarn install --production --no-progress --non-interactive --silent echo "SAFETY_ASSURED=1">> .env.production -RAILS_ENV=production $final_path/live/bin/bundle exec rails db:migrate -RAILS_ENV=production $final_path/live/bin/bundle exec rails assets:precompile +RAILS_ENV=production $final_path/live/bin/bundle exec rails db:migrate --quiet +RAILS_ENV=production $final_path/live/bin/bundle exec rails assets:precompile --quiet INSTALL ) |
