From 69d983fcd5501bbe4afc61b741f0fc7c5851d373 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 29 Oct 2015 00:15:13 +0100 Subject: [PATCH] add directory to download path --- contrib/make_download | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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):