5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-23 18:26:22 +00:00

Merge branch 'deploy-rsync' into panel.sutty.nl

This commit is contained in:
f 2022-04-06 17:06:04 -03:00
commit d39f27542e

View file

@ -82,8 +82,8 @@ class DeployRsync < Deploy
# Devolver el destino o lanzar un error si no está configurado
def destination
values[:destination].tap do |_d|
raise ArgumentError, 'destination no está configurado'
values[:destination].tap do |d|
raise(ArgumentError, 'destination no está configurado') if d.blank?
end
end
end