mirror of
https://0xacab.org/sutty/sutty
synced 2025-01-19 11:33:38 +00:00
deploy en desarrollo
This commit is contained in:
parent
98d1f190dd
commit
a66039e8fc
2 changed files with 6 additions and 2 deletions
|
@ -40,7 +40,7 @@ class Deploy < ApplicationRecord
|
||||||
end
|
end
|
||||||
|
|
||||||
def gems_dir
|
def gems_dir
|
||||||
Pathname.new(File.join(home_dir, '..', 'gems')).realpath.to_s
|
ENV.fetch('GEMS_DIR', Pathname.new(File.join(home_dir, '..', 'gems')).realpath.to_s)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Corre un comando y devuelve true si terminó correctamente
|
# Corre un comando y devuelve true si terminó correctamente
|
||||||
|
|
|
@ -82,7 +82,11 @@ class DeployLocal < Deploy
|
||||||
end
|
end
|
||||||
|
|
||||||
def bundle
|
def bundle
|
||||||
run %(bundle install --no-cache --path="#{gems_dir}")
|
if Rails.env.production?
|
||||||
|
run %(bundle install --no-cache --path="#{gems_dir}")
|
||||||
|
else
|
||||||
|
run %(bundle install)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def jekyll_build
|
def jekyll_build
|
||||||
|
|
Loading…
Reference in a new issue