diff --git a/contrib/make_download b/contrib/make_download index 657e6bca..bf5f9423 100755 --- a/contrib/make_download +++ b/contrib/make_download @@ -24,8 +24,8 @@ files = { } for k, n in files.items(): - path = "binaries/%s"%n - link = "https://download.electrum.org/%s"%n + path = "dist/%s"%n + link = "https://download.electrum.org/%s/%s"%(version,n) if not os.path.exists(path): os.system("wget -q %s -O %s" % (link, path)) if not os.path.getsize(path):