Skip to content

Commit ec4467b

Browse files
committed
Minor release script fixes
1 parent 8725f3b commit ec4467b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dorelease.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def check_macos_tarball():
169169
"""
170170
Checks if git-annex tarball is in the download location
171171
"""
172-
path = "./dist/downloads/git-annex-latest.tar.bz2"
172+
path = "./dist/downloads/git-annex-latest-macos.tar.bz2"
173173
if os.path.exists(path):
174174
print(f"Found {path}")
175175
return path
@@ -442,7 +442,7 @@ def package_mac_bundle(binfile, annex_tar):
442442
os.path.join(macosdir, "launch"))
443443

444444
# create the archive
445-
cmd = ["tar", "-cvf", arc_abs, "-C", pkgroot, "."]
445+
cmd = ["tar", "-czf", arc_abs, "-C", pkgroot, "."]
446446
print(f"Running {' '.join(cmd)} (from {pkgroot})")
447447
if run(cmd, stdout=DEVNULL) > 0:
448448
print(f"Failed to create archive {archive} in {pkgroot}",

0 commit comments

Comments
 (0)