Skip to content

Commit

Permalink
Returncode command fix with daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcarrega committed Feb 8, 2022
1 parent 32b98d5 commit cb4fe9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def action(
error=res.returncode is None or res.returncode > 0,
stdout=cls.process(res.stdout),
stderr=cls.process(res.stderr),
returncode=res.returncode or -1,
returncode=res.returncode or 0,
start=start,
end=end,
)
Expand Down

0 comments on commit cb4fe9b

Please sign in to comment.