updates: add a special case for "install-" build tags on windows

Those will have a ".exe" file extension, not .zip.
release-v0.4.0.1
moneromooo-monero 7 years ago
parent 4146f2e202
commit 68c0178220
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -100,7 +100,7 @@ namespace tools
{
const char *base = user ? "https://downloads.getmonero.org/" : "http://updates.getmonero.org/";
#ifdef _WIN32
static const char extension[] = ".zip";
static const char *extension = strncmp(buildtag.c_str(), "install-", 8) ? ".zip" : ".exe";
#else
static const char extension[] = ".tar.bz2";
#endif

Loading…
Cancel
Save