basepath prefix update #3
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
danial2026/Shifter!3
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "basepath"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR is being reviewed by Cursor Bugbot
Details
You are on the Bugbot Free tier. On this plan, Bugbot will review limited PRs each billing cycle.
To receive Bugbot reviews on all of your PRs, visit the Cursor dashboard to activate Pro and start your 14-day free trial.
Bug: Inconsistent Branch References in Installer URLs
The one-line installer URL uses inconsistent branch references:
README.mdpoints tobasepath, whiledocs/installation.mdpoints tomain. This discrepancy could confuse users and result in different installation behaviors.Additional Locations (1)
docs/installation.md#L29-L30@ -2,2 +2,4 @@set -euo pipefail# Default branch to install from GitHub.DEFAULT_BRANCH="basepath"Bug: Installer Fails on Missing Default Branch
The installer hardcodes
DEFAULT_BRANCHto 'basepath', which appears to be a temporary development branch. If this branch is removed or doesn't exist,git cloneoperations will fail, breaking the installation process.