Warn on a stale download in the installer
coordinator / test (push) Canceled after 0s
python / test (push) Canceled after 0s
release / binaries (amd64, darwin) (push) Canceled after 0s
release / binaries (amd64, linux) (push) Canceled after 0s
release / binaries (amd64, windows) (push) Canceled after 0s
release / binaries (arm64, darwin) (push) Canceled after 0s
release / binaries (arm64, linux) (push) Canceled after 0s
release / binaries (arm64, windows) (push) Canceled after 0s
release / image (push) Canceled after 0s
users / test (push) Canceled after 0s
release / release (push) Canceled after 0s

This commit is contained in:
Emil
2026-08-02 22:07:04 +03:00
parent a339ac853b
commit 9b0b9b208a
+8
View File
@@ -51,7 +51,15 @@ mv "$TARGET.tmp" "$TARGET"
echo
echo "SciMesh installed: $TARGET"
INSTALLED_VERSION=$("$TARGET" --version 2>/dev/null | awk '{print $2}')
"$TARGET" --version
if [ -n "$INSTALLED_VERSION" ] && [ "$INSTALLED_VERSION" != "${VERSION#v}" ]; then
echo
echo "WARNING: expected version $VERSION but got $INSTALLED_VERSION."
echo "This is usually a stale download cache. Re-run the installer in a few"
echo "minutes, or pin the version explicitly:"
echo " SCIMESH_VERSION=${VERSION} bash <(curl -fsSL https://raw.githubusercontent.com/${REPO}/main/install.sh)"
fi
echo
echo "Start the platform (one command, everything embedded):"
echo " $TARGET serve --open"