mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-26 13:46:22 +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,15 +32,17 @@ class DeployLocal < Deploy
|
||||||
# Obtener el tamaño de todos los archivos y directorios (los
|
# Obtener el tamaño de todos los archivos y directorios (los
|
||||||
# directorios son archivos :)
|
# directorios son archivos :)
|
||||||
def size
|
def size
|
||||||
paths = [destination, File.join(destination, '**', '**')]
|
@size ||= begin
|
||||||
|
paths = [destination, File.join(destination, '**', '**')]
|
||||||
|
|
||||||
Dir.glob(paths).map do |file|
|
Dir.glob(paths).map do |file|
|
||||||
if File.symlink? file
|
if File.symlink? file
|
||||||
0
|
0
|
||||||
else
|
else
|
||||||
File.size(file)
|
File.size(file)
|
||||||
end
|
end
|
||||||
end.inject(:+)
|
end.inject(:+)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def destination
|
def destination
|
||||||
|
|
|
@ -13,7 +13,7 @@ class DeployRsync < Deploy
|
||||||
#
|
#
|
||||||
# @return [Integer]
|
# @return [Integer]
|
||||||
def size
|
def size
|
||||||
deploy_local.build_stats.last.size
|
deploy_local.size
|
||||||
end
|
end
|
||||||
|
|
||||||
# Devolver el destino o lanzar un error si no está configurado
|
# Devolver el destino o lanzar un error si no está configurado
|
||||||
|
|
Loading…
Reference in a new issue