Skip to content

Commit 24e6639

Browse files
committed
Release script: Latest annex for Windows
Back to latest for Windows. Version 8 fixes a lot of issues.
1 parent a642beb commit 24e6639

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

dorelease

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,9 @@ def get_git_annex_for_windows():
188188
"""
189189
Download the git annex for windows installer.
190190
"""
191-
# win_git_annex_url = ("https://downloads.kitenet.net/git-annex/windows/"
192-
# "current/git-annex-installer.exe")
193-
# return download(win_git_annex_url)
194-
# fixing windows installer version (again)
195-
fname = os.path.join(DESTDIR, "downloads", "git-annex-installer.exe")
196-
return fname
191+
win_git_annex_url = ("https://downloads.kitenet.net/git-annex/windows/"
192+
"current/git-annex-installer.exe")
193+
return download(win_git_annex_url)
197194

198195

199196
def package_linux_plain(binfile):
@@ -364,6 +361,8 @@ def package_mac_bundle(binfile, annex_tar):
364361
For each macOS binary make a zip that includes the annex.app with the gin
365362
binary in its path.
366363
"""
364+
if not annex_tar:
365+
return None
367366
with TemporaryDirectory(suffix="gin-macos") as tmpdir:
368367
# extract macOS git-annex tar into pkgroot
369368
cmd = ["tar", "-xjf", annex_tar, "-C", tmpdir]

0 commit comments

Comments
 (0)