diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-10-22 12:56:01 +0200 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-10-29 15:17:31 +0100 |
| commit | 867b67c4fd6490381dbe061df52ec75725da8f43 (patch) | |
| tree | 177681b7c9c16b6651046861608a1ec4ed785e64 /src/wallet/api/wallet_manager.cpp | |
| parent | 8d511f3c2486d22400cdd69c8d3640ee2d20aeff (diff) | |
| download | monzero-core-867b67c4fd6490381dbe061df52ec75725da8f43.tar.gz monzero-core-867b67c4fd6490381dbe061df52ec75725da8f43.tar.xz monzero-core-867b67c4fd6490381dbe061df52ec75725da8f43.zip | |
Wallet API: override update subdir when built from src
Diffstat (limited to 'src/wallet/api/wallet_manager.cpp')
| -rw-r--r-- | src/wallet/api/wallet_manager.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wallet/api/wallet_manager.cpp b/src/wallet/api/wallet_manager.cpp index a64766c84..2326f54d3 100644 --- a/src/wallet/api/wallet_manager.cpp +++ b/src/wallet/api/wallet_manager.cpp @@ -434,12 +434,14 @@ std::string WalletManagerImpl::resolveOpenAlias(const std::string &address, bool return addresses.front(); } -std::tuple<bool, std::string, std::string, std::string, std::string> WalletManager::checkUpdates(const std::string &software, const std::string &subdir) +std::tuple<bool, std::string, std::string, std::string, std::string> WalletManager::checkUpdates(const std::string &software, std::string subdir) { #ifdef BUILD_TAG static const char buildtag[] = BOOST_PP_STRINGIZE(BUILD_TAG); #else static const char buildtag[] = "source"; + // Override the subdir string when built from source + subdir = "source"; #endif std::string version, hash; |
