mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 13:01:42 +00:00
fix: reversed logic
This commit is contained in:
parent
9709f419ca
commit
c8e1d50232
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ class DeployJob < ApplicationJob
|
||||||
nil
|
nil
|
||||||
end.compact
|
end.compact
|
||||||
|
|
||||||
unless d == @site.deployment_list.last && !status
|
if d == @site.deployment_list.last && !status
|
||||||
raise DeployException, 'Falló la compilación'
|
raise DeployException, 'Falló la compilación'
|
||||||
end
|
end
|
||||||
rescue StandardError => e
|
rescue StandardError => e
|
||||||
|
|
Loading…
Reference in a new issue