Skip to content

Commit

Permalink
Commands with non-existing files are not required
Browse files Browse the repository at this point in the history
  • Loading branch information
17451k committed Jan 29, 2021
1 parent 852af2e commit 3fc9c5d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions clade/extensions/cdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ def parse(self, cmds_file):

for cmd in cmds:
for i, cmd_in in enumerate(cmd["in"]):
if not os.path.exists(cmd_in):
continue

if self.conf.get("CDB.filter_opts", False):
opts = filter_opts(cmd["opts"])
else:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def finalize_options(self):

setuptools.setup(
name="clade",
version="3.3.5",
version="3.3.6",
author="Ilya Shchepetkov",
author_email="shchepetkov@ispras.ru",
url="https://github.com/17451k/clade",
Expand Down

0 comments on commit 3fc9c5d

Please sign in to comment.