Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jsikorski committed Sep 18, 2024
1 parent 721b458 commit ff5b5bb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def artifacts_must_exists(self):

for artifact in self.artifacts:

if artifact.is_file() and not artifact.exists():
if "*" not in artifact.name and not artifact.exists():
raise ValueError(
f"Specified artifact {artifact} does not exist locally."
)
Expand Down

0 comments on commit ff5b5bb

Please sign in to comment.