diff options
| author | yalh76 <yalh@yahoo.com> | 2020-05-19 13:25:24 +0200 |
|---|---|---|
| committer | yalh76 <yalh@yahoo.com> | 2020-05-19 13:25:24 +0200 |
| commit | f4487bb3df27286b811579116af4decb8bd29fea (patch) | |
| tree | 9f05981f16499a567941867979f226bd65cc94ce /scripts | |
| parent | 4aafbbb86cd9110adce6506b93ba17463578c308 (diff) | |
| download | mastodon_ynh-f4487bb3df27286b811579116af4decb8bd29fea.tar.gz mastodon_ynh-f4487bb3df27286b811579116af4decb8bd29fea.tar.bz2 mastodon_ynh-f4487bb3df27286b811579116af4decb8bd29fea.zip | |
fix bundle install
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/install | 4 | ||||
| -rw-r--r-- | scripts/upgrade | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/scripts/install b/scripts/install index c359dfd..f6a1411 100644 --- a/scripts/install +++ b/scripts/install @@ -199,7 +199,9 @@ chown -R "$app": "$final_path" pushd "$final_path/live" ynh_use_nodejs - bundle install -j$(getconf _NPROCESSORS_ONLN) --deployment --without development test + bundle config deployment 'true' + bundle config without 'development test' + bundle install -j$(getconf _NPROCESSORS_ONLN) yarn install --pure-lockfile echo "SAFETY_ASSURED=1">> $config RAILS_ENV=production bundle exec rails db:setup --quiet diff --git a/scripts/upgrade b/scripts/upgrade index 7d747e0..ee97cde 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -289,7 +289,9 @@ chown -R "$app": "$final_path" pushd "$final_path/live" ynh_use_nodejs - bundle install -j$(getconf _NPROCESSORS_ONLN) --deployment --without development test + bundle config deployment 'true' + bundle config without 'development test' + bundle install -j$(getconf _NPROCESSORS_ONLN) yarn install --pure-lockfile RAILS_ENV=production bundle exec rails assets:clean RAILS_ENV=production bundle exec rails assets:precompile |
