commit 69d983fcd5501bbe4afc61b741f0fc7c5851d373
parent 53273b7d4020d68f070a68f35f1488daca6dbd34
Author: ThomasV <thomasv@electrum.org>
Date: Thu, 29 Oct 2015 00:15:13 +0100
add directory to download path
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git 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):