We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 809f656 commit e4ca824Copy full SHA for e4ca824
src/sys/setup.cpp
@@ -481,7 +481,7 @@ std::string Setup::checkLatestedVersion(bool silent) {
481
const auto latest_version = getLatestVersion();
482
if (latest_version != Version::BRANCH) {
483
if (!silent) {
484
- Log::get().info("Update to LODA " + latest_version + " available");
+ Log::get().info("New LODA version available: " + latest_version);
485
}
486
return latest_version;
487
validator/loda-validator.sh
@@ -23,6 +23,9 @@ if [ -d $HOME/loda/programs/.git ]; then
23
popd > /dev/null
24
fi
25
26
+echo "Upgrading LODA"
27
+loda upgrade
28
+
29
echo "Waiting for network"
30
while ! ping -c 1 loda-lang.org &> /dev/null 2>&1; do
31
sleep 5
0 commit comments