Skip to content

Commit b591b93

Browse files
committed
fix(bootstrap): Point bootstrap URL to sa5mmm7/dev-setup
1 parent a037682 commit b591b93

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This repo is the **public tooling layer**. Your team maintains a separate **priv
1111
**macOS (no git yet):**
1212

1313
```bash
14-
curl -fsSL https://raw.githubusercontent.com/YOUR_ORG/dev-setup/main/bootstrap.sh | bash
14+
curl -fsSL https://raw.githubusercontent.com/sa5mmm7/dev-setup/main/bootstrap.sh | bash
1515
```
1616

1717
**Windows** — WSL2 must be set up first. In PowerShell (as Administrator):
@@ -23,13 +23,13 @@ wsl --install
2323
Restart, open Ubuntu from the Start menu, then run inside WSL2:
2424

2525
```bash
26-
curl -fsSL https://raw.githubusercontent.com/YOUR_ORG/dev-setup/main/bootstrap.sh | bash
26+
curl -fsSL https://raw.githubusercontent.com/sa5mmm7/dev-setup/main/bootstrap.sh | bash
2727
```
2828

2929
**Already have git:**
3030

3131
```bash
32-
git clone https://github.com/YOUR_ORG/dev-setup.git ~/dev-setup
32+
git clone https://github.com/sa5mmm7/dev-setup.git ~/dev-setup
3333
cd ~/dev-setup
3434
cp config/team.env.example config/team.env
3535
# Edit config/team.env with your team's values, then:

bootstrap.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
# Bootstrap a new dev machine before the onboarding repo is cloned.
33
#
44
# Usage (once the repo is public):
5-
# curl -fsSL https://raw.githubusercontent.com/YOUR_ORG/dev-setup/main/bootstrap.sh | bash
5+
# curl -fsSL https://raw.githubusercontent.com/sa5mmm7/dev-setup/main/bootstrap.sh | bash
66
#
77
# What this does:
88
# 1. Installs git if missing (Xcode CLT on macOS, apt on WSL2)
99
# 2. Clones the onboarding repo to ~/dev-setup
1010
# 3. Runs run-onboarding.sh
1111
set -euo pipefail
1212

13-
REPO_URL="https://github.com/YOUR_ORG/dev-setup.git"
13+
REPO_URL="https://github.com/sa5mmm7/dev-setup.git"
1414
CLONE_DIR="${HOME}/dev-setup"
1515

1616
# --- helpers ---
@@ -34,7 +34,7 @@ if ! command -v git >/dev/null 2>&1; then
3434
echo "Xcode Command Line Tools (this includes git)."
3535
echo ""
3636
echo "After the install completes, run this script again:"
37-
echo " curl -fsSL https://raw.githubusercontent.com/YOUR_ORG/dev-setup/main/bootstrap.sh | bash"
37+
echo " curl -fsSL https://raw.githubusercontent.com/sa5mmm7/dev-setup/main/bootstrap.sh | bash"
3838
echo ""
3939
# Trigger the macOS install dialog
4040
git --version 2>/dev/null || true

0 commit comments

Comments
 (0)