Skip to content

Commit 3577306

Browse files
committed
check if path is exists
1 parent 82b012e commit 3577306

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pipeline/storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def post_process(self, paths, dry_run=False, **options):
7474
return
7575

7676
for path in paths:
77-
if not matches_patterns(path, self.gzip_patterns):
77+
if path and not matches_patterns(path, self.gzip_patterns):
7878
continue
7979
original_file = self.open(path)
8080
gzipped_path = "{0}.gz".format(path)

0 commit comments

Comments
 (0)