diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-10-02 23:29:25 +0400 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-10-02 23:29:25 +0400 |
commit | 87d0516f7dbe1a5195145975502d05ccf7c0fdd4 (patch) | |
tree | 586f3ca7a8a49b89cc0010f78772b587d5e815af /src/rpc | |
parent | Merge pull request #2512 (diff) | |
parent | Source updates are in a source subdirectory (diff) | |
download | monero-87d0516f7dbe1a5195145975502d05ccf7c0fdd4.tar.xz |
Merge pull request #2513
309290d1 Source updates are in a source subdirectory (moneromooo-monero)
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/core_rpc_server.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index 76272ad6c..9b91f438a 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -1619,8 +1619,10 @@ namespace cryptonote static const char software[] = "monero"; #ifdef BUILD_TAG static const char buildtag[] = BOOST_PP_STRINGIZE(BUILD_TAG); + static const char subdir[] = "cli"; #else static const char buildtag[] = "source"; + static const char subdir[] = "source"; #endif if (req.command != "check" && req.command != "download" && req.command != "update") @@ -1643,8 +1645,8 @@ namespace cryptonote } res.update = true; res.version = version; - res.user_uri = tools::get_update_url(software, "cli", buildtag, version, true); - res.auto_uri = tools::get_update_url(software, "cli", buildtag, version, false); + res.user_uri = tools::get_update_url(software, subdir, buildtag, version, true); + res.auto_uri = tools::get_update_url(software, subdir, buildtag, version, false); res.hash = hash; if (req.command == "check") { |