This commit is contained in:
Akbar Rifai 2025-06-27 19:05:41 -03:00 committed by GitHub
commit 13f04ed62b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ _TAG = re.compile(
def match_tag(tag: str) -> bool: def match_tag(tag: str) -> bool:
return bool(_TAG.match(tag)) return tag == '' or bool(_TAG.match(tag))
def tar(path, exclude=None, dockerfile=None, fileobj=None, gzip=False): def tar(path, exclude=None, dockerfile=None, fileobj=None, gzip=False):