Add setup.bash as main entry point for bash migration#22
Merged
Conversation
ooloth
added a commit
that referenced
this pull request
Jul 12, 2025
Updates the bash migration plan to clearly explain the parallel development approach: - Building setup.bash system alongside existing setup.zsh (not replacing) - Both systems can coexist indefinitely until cutover decision - Zero disruption to existing workflows during development - Clear boundaries between bash infrastructure and zsh user experience Also updated status to reflect recent merged PRs: - PR #22: setup.bash entry point - PR #23: Rust installation migration - PR #24: Node.js installation migration - PR #25: Neovim installation migration (in review)
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
setup.bash- Main entry point for dotfiles installationtest/setup/test-setup-bash.batswith 8 comprehensive tests🤔 Why
👀 Usage
Run the bash setup:
Features:
👩🔬 How to validate
Run the test suite:
Expected output:
Verify shellcheck compliance:
Test manually (dry run mode):
Architecture Validation
This PR proves the bash migration architecture works end-to-end:
✅ Utilities Integration:
bin/lib/machine-detection.bash- Dynamic machine detectionbin/lib/dry-run-utils.bash- Dry-run mode supportbin/lib/error-handling.bash- Enhanced error handlingbin/lib/prerequisite-validation.bash- System validation✅ Installation Scripts:
bin/install/ssh.bash- SSH key managementbin/install/github.bash- GitHub connectivitybin/install/homebrew.bash- Package managementbin/install/symlinks.bash- Dotfiles symlinking✅ Quality Standards:
set -euo pipefail)🔗 Related links
Implementation Details
TDD Approach:
Key Features:
Migration Benefits:
Next Steps
This keystone PR enables: