fix: update _JBS_BASE and RAW_BASE to src/just_bashit/ after restructure#10
Merged
Conversation
The src/ restructure moved all scripts to src/just_bashit/ but _JBS_BASE still pointed to src/. This caused all co-fetched siblings (toml.sh, pkg.sh, etc.) to 404 when jbx tried to populate its cache, breaking install-deps and any other script that sources sibling libs. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Scripts moved from src/ to src/just_bashit/ in the v0.2.0 toolchain alignment. just-runit's _JBS_BASE was fixed in the previous commit; this fixes get-jb.sh's RUNIT_URL which still pointed at src/just-runit (404) instead of src/just_bashit/just-runit. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
Scripts moved from
src/→src/just_bashit/in the v0.2.0 toolchain alignment. Two hardcoded paths were missed:src/just_bashit/just-runit:_JBS_BASEstill pointed at…/main/src→ alljust-bashit:*script fetches were 404 (from thefix/jbs-base-pathcommit, included here)src/just_bashit/get-jb.sh:RAW_BASEstill pointed at…/main/src→RUNIT_URLresolved to…/src/just-runitwhich is 404; install downloaded a 404 HTML page as the binaryAfter this PR + mirror re-trigger,
get-jb.shwill install correctly andjbx just-bashit:*script calls will resolve from the new path.Test plan
curl -sSL https://just-buildit.github.io/get-jb.sh | bashinstalls a working jbxjbx just-bashit:install-deps -g runtime,dev -s aptcompletes in a fresh CI runner🤖 Generated with Claude Code