el directorio base es el sitio mismo

This commit is contained in:
f 2019-09-19 10:54:21 -03:00
parent 5799ad9a97
commit ece8423ba5
No known key found for this signature in database
GPG key ID: 2AE5A13E321F953D
2 changed files with 1 additions and 3 deletions

View file

@ -45,7 +45,6 @@ class Deploy < ApplicationRecord
# Corre un comando y devuelve true si terminó correctamente
# rubocop:disable Metrics/MethodLength
# rubocop:disable Metrics/AbcSize
def run(cmd)
# XXX: prestar atención a la concurrencia de sqlite3, se podría
# enviar los datos directamente a una API para que se manejen desde
@ -69,5 +68,4 @@ class Deploy < ApplicationRecord
r.try :exited?
end
# rubocop:enable Metrics/MethodLength
# rubocop:enable Metrics/AbcSize
end

View file

@ -66,7 +66,7 @@ class DeployLocal < Deploy
end
def bundle
run %(bundle install --path="#{gems_dir}")
run %(bundle install --no-cache --path="#{gems_dir}")
end
def jekyll_build