mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-26 10:36:21 +00:00
Merge branch 'deploy-rsync' into panel.sutty.nl
This commit is contained in:
commit
8be5719dbd
2 changed files with 11 additions and 9 deletions
|
@ -32,6 +32,7 @@ class DeployLocal < Deploy
|
|||
# Obtener el tamaño de todos los archivos y directorios (los
|
||||
# directorios son archivos :)
|
||||
def size
|
||||
@size ||= begin
|
||||
paths = [destination, File.join(destination, '**', '**')]
|
||||
|
||||
Dir.glob(paths).map do |file|
|
||||
|
@ -42,6 +43,7 @@ class DeployLocal < Deploy
|
|||
end
|
||||
end.inject(:+)
|
||||
end
|
||||
end
|
||||
|
||||
def destination
|
||||
File.join(Rails.root, '_deploy', site.hostname)
|
||||
|
|
|
@ -13,7 +13,7 @@ class DeployRsync < Deploy
|
|||
#
|
||||
# @return [Integer]
|
||||
def size
|
||||
deploy_local.build_stats.last.size
|
||||
deploy_local.size
|
||||
end
|
||||
|
||||
# Devolver el destino o lanzar un error si no está configurado
|
||||
|
|
Loading…
Reference in a new issue