Source updates are in a source subdirectory
rather than in the same directory as the prebuilt versions
This commit is contained in:
parent
1f9058187c
commit
309290d1c7
|
@ -1300,11 +1300,12 @@ namespace cryptonote
|
||||||
bool core::check_updates()
|
bool core::check_updates()
|
||||||
{
|
{
|
||||||
static const char software[] = "monero";
|
static const char software[] = "monero";
|
||||||
static const char subdir[] = "cli"; // because it can never be simple
|
|
||||||
#ifdef BUILD_TAG
|
#ifdef BUILD_TAG
|
||||||
static const char buildtag[] = BOOST_PP_STRINGIZE(BUILD_TAG);
|
static const char buildtag[] = BOOST_PP_STRINGIZE(BUILD_TAG);
|
||||||
|
static const char subdir[] = "cli"; // because it can never be simple
|
||||||
#else
|
#else
|
||||||
static const char buildtag[] = "source";
|
static const char buildtag[] = "source";
|
||||||
|
static const char subdir[] = "source"; // because it can never be simple
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (check_updates_level == UPDATES_DISABLED)
|
if (check_updates_level == UPDATES_DISABLED)
|
||||||
|
|
|
@ -1560,8 +1560,10 @@ namespace cryptonote
|
||||||
static const char software[] = "monero";
|
static const char software[] = "monero";
|
||||||
#ifdef BUILD_TAG
|
#ifdef BUILD_TAG
|
||||||
static const char buildtag[] = BOOST_PP_STRINGIZE(BUILD_TAG);
|
static const char buildtag[] = BOOST_PP_STRINGIZE(BUILD_TAG);
|
||||||
|
static const char subdir[] = "cli";
|
||||||
#else
|
#else
|
||||||
static const char buildtag[] = "source";
|
static const char buildtag[] = "source";
|
||||||
|
static const char subdir[] = "source";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (req.command != "check" && req.command != "download" && req.command != "update")
|
if (req.command != "check" && req.command != "download" && req.command != "update")
|
||||||
|
@ -1584,8 +1586,8 @@ namespace cryptonote
|
||||||
}
|
}
|
||||||
res.update = true;
|
res.update = true;
|
||||||
res.version = version;
|
res.version = version;
|
||||||
res.user_uri = tools::get_update_url(software, "cli", buildtag, version, true);
|
res.user_uri = tools::get_update_url(software, subdir, buildtag, version, true);
|
||||||
res.auto_uri = tools::get_update_url(software, "cli", buildtag, version, false);
|
res.auto_uri = tools::get_update_url(software, subdir, buildtag, version, false);
|
||||||
res.hash = hash;
|
res.hash = hash;
|
||||||
if (req.command == "check")
|
if (req.command == "check")
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue