5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-04 18:35:45 +00:00

fixup! hacer deploys remotos

This commit is contained in:
f 2022-04-06 17:05:51 -03:00
parent accb559f01
commit f10b65173a

View file

@ -81,8 +81,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