Skip to content

Commit

Permalink
fix(binary): binary is now registered again when condition is changed
Browse files Browse the repository at this point in the history
  • Loading branch information
Toilal committed Mar 23, 2021
1 parent 1b805c0 commit fd5230b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ddb/feature/docker/binaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ def __eq__(self, other): # pylint:disable=too-many-return-statements
return False
if self.options_condition != other.options_condition:
return False
if self.condition != other.condition:
return False
if self.args != other.args:
return False
if self.exe != other.exe:
Expand All @@ -166,6 +168,7 @@ def __hash__(self):
self.workdir,
self.options,
self.options_condition,
self.condition,
self.args,
self.exe,
self.entrypoint))

0 comments on commit fd5230b

Please sign in to comment.