1
0
Fork 0
forked from lthn/blockchain

disabled full rebuild, added missing / symbol in appimage

This commit is contained in:
cryptozoidberg 2023-01-12 20:11:42 +01:00
parent 33f7c58146
commit 985af2ba08
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC
2 changed files with 3 additions and 2 deletions

View file

@ -343,7 +343,7 @@ bool wallets_manager::init(view::i_view* pview_handler)
{
//app running inside AppImage
LOG_PRINT_L0("APPDIR SET: " << env_p);
path_to_html = std::string(env_p) + "usr/bin/html";
path_to_html = std::string(env_p) + "/usr/bin/html";
}
else
#endif

View file

@ -45,7 +45,8 @@ echo "--------------------------------------------------"
echo "Building...."
rm -rf build; mkdir -p build/release; cd build/release;
#rm -rf build; mkdir -p build/release;
cd build/release;
cmake $testnet_def -D STATIC=true -D ARCH=x86-64 -D BUILD_GUI=TRUE -D OPENSSL_ROOT_DIR="$OPENSSL_ROOT_DIR" -D CMAKE_PREFIX_PATH="$QT_PREFIX_PATH" -D CMAKE_BUILD_TYPE=Release ../..
if [ $? -ne 0 ]; then
echo "Failed to run cmake"