chore: remove obsolete fix-bootstrap-post-clone.sh recovery script - #826
Open
allamand wants to merge 1 commit into
Open
chore: remove obsolete fix-bootstrap-post-clone.sh recovery script#826allamand wants to merge 1 commit into
allamand wants to merge 1 commit into
Conversation
This manual break-glass helper re-ran the post-clone steps of the old bootstrap-mise.sh when a git/NFS clone bug interrupted the workshop repo clone. It is now obsolete: - its premise file (bootstrap-mise.sh) no longer exists; - it is not referenced by any Taskfile or workshop content (only a dated upgrade doc); - the clone reliability bug it worked around is fixed in the current bootstrap (git_clone_with_retry + shopt -s dotglob + clone-to-/tmp-then-move); - being a hand-maintained duplicate of the bootstrap tail, it had drifted and carried the frozen-PATH bug in aliases.sh (mise tool versions baked in), now fixed at the real source.
allamand
requested review from
elamaran11,
hmuthusamy,
punkwalker and
shapirov103
as code owners
August 31, 2026 21:58
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.
What
Removes
scripts/fix-bootstrap-post-clone.sh.Why it's obsolete
bootstrap-mise.sh) no longer exists in the tree.docs/UPGRADE-FROM-MAIN-2026-05.mdchecklist line (stale path).git_clone_with_retry+shopt -s dotglob+ clone-to-/tmp-then-move).echo "export PATH=…:$PATH"(double quotes) baked the bootstrap-time mise install paths into~/.bashrc.d/aliases.sh, so bumping a mise-pinned tool version had no effect. Fixed at the real source instead.Note
The only remaining reference is a historical upgrade log; left untouched (point-in-time record).