fix(stint): drop auto_updates true + add manpage stanza - #11
Merged
Conversation
`auto_updates true` was causing brew upgrade to fail mid-flight: the
uninstall step deletes /Applications/Stint.app, but brew then skips the
install/copy step (assuming the app self-updates), leaving the user
with no app. Repro from a 0.2.0 → 0.3.0 upgrade attempt:
==> Removing files:
/Applications/Stint.app
==> Purging files for version 0.3.0 of Cask stint
Error: reyemtech/tap/stint: It seems the App source
'/Applications/Stint.app' is not there.
Tauri's in-app updater (tauri-plugin-updater) still works regardless of
this brew-side hint, so dropping auto_updates is a pure win — brew now
handles upgrades the boring-and-correct way.
Also wires up the man page: stint Phase 6a bundles stint.1 at
Stint.app/Contents/Resources/man/man1/. The new `manpage` stanza
symlinks it into Homebrew's man path so `man stint` works.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two related fixes for the stint cask:
Drop
auto_updates true— it was causingbrew upgrade stintto fail mid-flight. The uninstall step deletes `/Applications/Stint.app` but brew then skips the install/copy step (assuming the app self-updates), leaving the user with no app. Repro from the 0.2.0 → 0.3.0 upgrade reported today:```
==> Removing files:
/Applications/Stint.app
==> Purging files for version 0.3.0 of Cask stint
Error: reyemtech/tap/stint: It seems the App source
'/Applications/Stint.app' is not there.
```
Tauri's in-app updater (`tauri-plugin-updater`) is independent of this brew-side hint, so dropping `auto_updates` is a pure win: brew handles upgrades the boring-and-correct way (uninstall → mount → copy → unmount).
Add
manpagestanza — stint Phase 6a (v0.3.0) bundles `stint.1` at `Stint.app/Contents/Resources/man/man1/`. This symlinks it into Homebrew's man path so `man stint` works after `brew install --cask stint`.Test plan
🤖 Generated with Claude Code