diff --git a/daemon_builder/install.sh b/daemon_builder/install.sh index 2231ed4..9d09981 100644 --- a/daemon_builder/install.sh +++ b/daemon_builder/install.sh @@ -10,7 +10,7 @@ ################################################################################ if [ -z "${TAG}" ]; then - TAG=v2.3.6 + TAG=v2.3.7 fi clear diff --git a/daemon_builder/requirements.sh b/daemon_builder/requirements.sh index 5ab0927..d393761 100644 --- a/daemon_builder/requirements.sh +++ b/daemon_builder/requirements.sh @@ -85,7 +85,8 @@ hide_output sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 5 hide_output sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 60 --slave /usr/bin/g++ g++ /usr/bin/g++-10 hide_output sudo update-alternatives --config gcc -hide_output sudo apt update && sudo apt upgrade +hide_output sudo apt update +hide_output sudo apt upgrade -y echo -e "$GREEN gcc & g++ Updated to version 10...$NC" diff --git a/daemon_builder/utils/source.sh b/daemon_builder/utils/source.sh index 2793c79..0565c94 100644 --- a/daemon_builder/utils/source.sh +++ b/daemon_builder/utils/source.sh @@ -1157,64 +1157,64 @@ else echo echo -e "$CYAN --------------------------------------------------------------------------------------- $NC" echo - echo -e "$GREEN Coin-tx moving to => /usr/bin/$NC$YELLOW${coind} $NC" + echo -e "$GREEN Daemon moving to => /usr/bin/$NC$YELLOW${coind} $NC" - sudo cp $STORAGE_ROOT/daemon_builder/temp_coin_builds/${coindir}/src/${coind} /usr/bin + sudo cp -r $STORAGE_ROOT/daemon_builder/temp_coin_builds/${coindir}/src/${coind} /usr/bin sudo strip /usr/bin/${coind} coindmv=true if [[ ("$ifcoincli" == "y" || "$ifcoincli" == "Y") ]]; then - echo -e "$GREEN Coin-tx moving to => /usr/bin/$NC$YELLOW${coincli} $NC" + echo -e "$GREEN CLI moving to => /usr/bin/$NC$YELLOW${coincli} $NC" - sudo cp $STORAGE_ROOT/daemon_builder/temp_coin_builds/${coindir}/src/${coincli} /usr/bin + sudo cp -r $STORAGE_ROOT/daemon_builder/temp_coin_builds/${coindir}/src/${coincli} /usr/bin sudo strip /usr/bin/${coincli} coinclimv=true fi if [[ ("$ifcointx" == "y" || "$ifcointx" == "Y") ]]; then - echo -e "$GREEN Coin-tx moving to => /usr/bin/$NC$YELLOW${cointx} $NC" + echo -e "$GREEN TX moving to => /usr/bin/$NC$YELLOW${cointx} $NC" - sudo cp $STORAGE_ROOT/daemon_builder/temp_coin_builds/${coindir}/src/${cointx} /usr/bin + sudo cp -r $STORAGE_ROOT/daemon_builder/temp_coin_builds/${coindir}/src/${cointx} /usr/bin sudo strip /usr/bin/${cointx} cointxmv=true fi if [[ ("$ifcoinutil" == "y" || "$ifcoinutil" == "Y") ]]; then - echo -e "$GREEN Coin-tx moving to => /usr/bin/$NC$YELLOW${coinutil} $NC" + echo -e "$GREEN UTIL moving to => /usr/bin/$NC$YELLOW${coinutil} $NC" - sudo cp $STORAGE_ROOT/daemon_builder/temp_coin_builds/${coindir}/src/${coinutil} /usr/bin + sudo cp -r $STORAGE_ROOT/daemon_builder/temp_coin_builds/${coindir}/src/${coinutil} /usr/bin sudo strip /usr/bin/${coinutil} coinutilmv=true fi if [[ ("$ifcoingtest" == "y" || "$ifcoingtest" == "Y") ]]; then - echo -e "$GREEN Coin-tx moving to => /usr/bin/$NC$YELLOW${coingtest} $NC" + echo -e "$GREEN GTEST moving to => /usr/bin/$NC$YELLOW${coingtest} $NC" - sudo cp $STORAGE_ROOT/daemon_builder/temp_coin_builds/${coindir}/src/${coingtest} /usr/bin + sudo cp -r $STORAGE_ROOT/daemon_builder/temp_coin_builds/${coindir}/src/${coingtest} /usr/bin sudo strip /usr/bin/${coingtest} coingtestmv=true fi if [[ ("$ifcointools" == "y" || "$ifcointools" == "Y") ]]; then - echo -e "$GREEN Coin-tx moving to => /usr/bin/$NC$YELLOW${cointools} $NC" + echo -e "$GREEN TOOLS moving to => /usr/bin/$NC$YELLOW${cointools} $NC" - sudo cp $STORAGE_ROOT/daemon_builder/temp_coin_builds/${coindir}/src/${cointools} /usr/bin + sudo cp -r $STORAGE_ROOT/daemon_builder/temp_coin_builds/${coindir}/src/${cointools} /usr/bin sudo strip /usr/bin/${cointools} cointoolsmv=true fi if [[ ("$ifcoinhash" == "y" || "$ifcoinhash" == "Y") ]]; then - echo -e "$GREEN Coin-hash moving to => /usr/bin/$NC$YELLOW${coinhash} $NC" + echo -e "$GREEN HASH moving to => /usr/bin/$NC$YELLOW${coinhash} $NC" - sudo cp $STORAGE_ROOT/daemon_builder/temp_coin_builds/${coindir}/src/${coinhash} /usr/bin + sudo cp -r $STORAGE_ROOT/daemon_builder/temp_coin_builds/${coindir}/src/${coinhash} /usr/bin sudo strip /usr/bin/${coinhash} coinhashmv=true fi if [[ ("$ifcoinwallet" == "y" || "$ifcoinwallet" == "Y") ]]; then - echo -e "$GREEN Coin-wallet moving to => /usr/bin/$NC$YELLOW${coinwallet} $NC" + echo -e "$GREEN WALLET moving to => /usr/bin/$NC$YELLOW${coinwallet} $NC" - sudo cp $STORAGE_ROOT/daemon_builder/temp_coin_builds/${coindir}/src/${coinwallet} /usr/bin + sudo cp -r $STORAGE_ROOT/daemon_builder/temp_coin_builds/${coindir}/src/${coinwallet} /usr/bin sudo strip /usr/bin/${coinwallet} coinwalletmv=true fi diff --git a/install.sh b/install.sh index 0e3b44b..0e5d244 100644 --- a/install.sh +++ b/install.sh @@ -15,7 +15,7 @@ ######################################################### # Default version tag if not provided as environment variable -TAG=${TAG:-v2.3.6} +TAG=${TAG:-v2.3.7} # File paths YIIMPOOL_VERSION_FILE="/etc/yiimpoolversion.conf" diff --git a/ver.sh b/ver.sh index 48d8fa7..59039af 100644 --- a/ver.sh +++ b/ver.sh @@ -9,7 +9,7 @@ ######################################################### if [ -z "${TAG}" ]; then - TAG=v2.3.6 + TAG=v2.3.7 fi echo 'VERSION='"${TAG}"'' | sudo -E tee /etc/yiimpoolversion.conf >/dev/null 2>&1 \ No newline at end of file