5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-01 08:11:42 +00:00

Merge branch 'issue-16282' into production.panel.sutty.nl

This commit is contained in:
f 2024-05-15 12:57:59 -03:00
commit 04c487e78d
No known key found for this signature in database

View file

@ -574,14 +574,18 @@ class Site < ApplicationRecord
def install_gems
return unless persisted?
deploy_local = deploys.find_by_type('DeployLocal')
deploy_local.git_lfs
Site.one_at_a_time.synchronize do
deploy_local = deploys.find_by_type('DeployLocal')
deploy_local.git_lfs
end
return unless !gems_installed? || gemfile_updated? || gemfile_lock_updated?
deploy_local.bundle
touch
FileUtils.touch(gemfile_path)
Site.one_at_a_time.synchronize do
deploy_local.bundle
touch
FileUtils.touch(gemfile_path)
end
end
def gem_path