mirror of
https://github.com/multica-ai/multica.git
synced 2026-06-17 03:38:32 +02:00
The install script crashed silently on repeated `--local` runs due to three issues: 1. `REPO_URL` includes `.git` suffix which returns 404 when used for GitHub releases API — `grep` found no match, exited 1, and `set -euo pipefail` killed the script with no error message. 2. `multica version` outputs "multica 0.1.26 (commit: ...)" but the version comparison used the full string, so it never matched the release tag and always attempted unnecessary upgrades. 3. Interrupted previous clones left a non-empty directory without `.git/`, causing `git clone` to fail on retry.