docs: recommend --trust-tap in Quick start#12
Merged
Conversation
The Quick start flow wired the shell with bare `shll shell-install`, so a fresh user following it verbatim still hit Homebrew's tap-trust warning that `--trust-tap` was built to resolve. Make `--trust-tap` the default first-run path and note that it opts brew into HOMEBREW_REQUIRE_TAP_TRUST=1 (affecting other untrusted taps), with a pointer to the lighter alternatives.
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
Follow-up to #11. The
--trust-tapflag and a Troubleshooting section landed there, but Quick start still showed bareshll shell-install— so a fresh user following the canonical "clean machine → wired toolkit" flow verbatim would wire their shell and then immediately hit the exact Homebrew tap-trust warning--trust-tapexists to resolve.Change
shll shell-install --trust-tapas the default first-run path (consistent with the security-forward stance of feat: shell-install --trust-tap (Homebrew tap-trust resolution) #11 — record genuine trust rather than silence the hint).--trust-tapopts brew intoHOMEBREW_REQUIRE_TAP_TRUST=1, which then requires explicit trust for other untrusted third-party taps too — so the global-posture side effect isn't silent. Points to Troubleshooting for the lighterHOMEBREW_NO_*alternatives and notes you can drop the flag.Docs-only; no code change.