mirror of
https://github.com/YunoHost-Apps/huginn_ynh.git
synced 2024-09-03 19:26:13 +02:00
Fix bundler version
This commit is contained in:
parent
60ec761af0
commit
ba02016c9a
2 changed files with 4 additions and 2 deletions
|
@ -43,7 +43,8 @@ ynh_script_progression --message="Building app..."
|
||||||
pushd "$install_dir"
|
pushd "$install_dir"
|
||||||
ynh_use_ruby
|
ynh_use_ruby
|
||||||
ynh_gem update --system --no-document
|
ynh_gem update --system --no-document
|
||||||
ynh_gem install rake bundler foreman --no-document
|
ynh_gem install bundler -v 2.4.22
|
||||||
|
ynh_gem install rake foreman --no-document
|
||||||
bundle config set --local deployment 'true'
|
bundle config set --local deployment 'true'
|
||||||
ynh_exec_warn_less bundle config set --local without 'development test'
|
ynh_exec_warn_less bundle config set --local without 'development test'
|
||||||
ynh_exec_warn_less bundle install
|
ynh_exec_warn_less bundle install
|
||||||
|
|
|
@ -61,7 +61,8 @@ pushd $install_dir
|
||||||
cp -f config/unicorn.rb.example config/unicorn.rb
|
cp -f config/unicorn.rb.example config/unicorn.rb
|
||||||
chown -R "$app:www-data" "$install_dir/config/unicorn.rb"
|
chown -R "$app:www-data" "$install_dir/config/unicorn.rb"
|
||||||
ynh_gem update --system --no-document
|
ynh_gem update --system --no-document
|
||||||
ynh_gem install rake bundler foreman --no-document
|
ynh_gem install bundler -v 2.4.22
|
||||||
|
ynh_gem install rake foreman --no-document
|
||||||
bundle config set --local deployment 'true'
|
bundle config set --local deployment 'true'
|
||||||
bundle config set --local without 'development test'
|
bundle config set --local without 'development test'
|
||||||
bundle install
|
bundle install
|
||||||
|
|
Loading…
Reference in a new issue