Skip to content

fix(install): download binary under asset name before checksum check#75

Merged
EngineerProjects merged 3 commits into
mainfrom
dev
Jun 23, 2026
Merged

fix(install): download binary under asset name before checksum check#75
EngineerProjects merged 3 commits into
mainfrom
dev

Conversation

@EngineerProjects

Copy link
Copy Markdown
Owner

Bug

`sha256sum --check` reads SHA256SUMS.txt and looks for each listed filename in the current directory. SHA256SUMS.txt contains entries like:

```
abc123... seshat-linux-amd64
```

The binary was being downloaded as `$TMP_DIR/seshat` (final name), so `sha256sum` could not find `seshat-linux-amd64` and aborted with "No such file or directory".

Fix

Download the binary to `$TMP_DIR/$BIN_ASSET` (keeping the asset name), run the checksum check, then rename to `seshat` after it passes.

- Add 🌐 Website link pointing to seshat-ai.com in header links
- Rename docs/images/nexus.png → docs/images/seshat.png
sha256sum --check looks for the filename listed in SHA256SUMS.txt
(e.g. seshat-linux-amd64). The binary was being saved as 'seshat'
before verification, so sha256sum could not find the file and aborted.

Fix: download to $TMP_DIR/$BIN_ASSET, verify against SHA256SUMS.txt,
then rename to 'seshat' only after the check passes.
@EngineerProjects EngineerProjects merged commit 0ed03e9 into main Jun 23, 2026
10 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant