Skip to content

Commit 8f3323d

Browse files
authored
Fixed: registry node pack file header should be zip. (#225)
1 parent e68cca7 commit 8f3323d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

comfy_cli/file_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def zip_files(zip_filename):
117117
def upload_file_to_signed_url(signed_url: str, file_path: str):
118118
try:
119119
with open(file_path, "rb") as f:
120-
headers = {"Content-Type": "application/gzip"}
120+
headers = {"Content-Type": "application/zip"}
121121
response = requests.put(signed_url, data=f, headers=headers)
122122

123123
# Simple success check

0 commit comments

Comments
 (0)