Skip to content

Commit 446d5f2

Browse files
fix: bootstrap URLs use master branch (repo default was not main)
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 9be006c commit 446d5f2

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ Open your **project folder** in Cursor, open the integrated terminal, and run:
2424

2525
**Windows (PowerShell):**
2626
```powershell
27-
irm https://raw.githubusercontent.com/MertCapkin/GraphStack/main/scripts/bootstrap.ps1 | iex
27+
irm https://raw.githubusercontent.com/MertCapkin/GraphStack/master/scripts/bootstrap.ps1 | iex
2828
```
2929

3030
**macOS / Linux:**
3131
```bash
32-
curl -fsSL https://raw.githubusercontent.com/MertCapkin/GraphStack/main/scripts/bootstrap.sh | bash
32+
curl -fsSL https://raw.githubusercontent.com/MertCapkin/GraphStack/master/scripts/bootstrap.sh | bash
3333
```
3434

3535
**After [PyPI publish](docs/PYPI.md):**

docs/PYPI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ graphstack init . -y --install-deps
3737
Or one-liner bootstrap (Cursor terminal):
3838

3939
```powershell
40-
irm https://raw.githubusercontent.com/MertCapkin/GraphStack/main/scripts/bootstrap.ps1 | iex
40+
irm https://raw.githubusercontent.com/MertCapkin/GraphStack/master/scripts/bootstrap.ps1 | iex
4141
```

scripts/bootstrap.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Installs graphstack + graphify, then initializes the current project.
33
#
44
# Usage (in your project folder, Cursor terminal):
5-
# irm https://raw.githubusercontent.com/MertCapkin/GraphStack/main/scripts/bootstrap.ps1 | iex
5+
# irm https://raw.githubusercontent.com/MertCapkin/GraphStack/master/scripts/bootstrap.ps1 | iex
66
#
77
# Or after PyPI publish:
88
# irm ... | iex

scripts/bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# GraphStack one-line bootstrap for Cursor terminal (macOS / Linux)
33
#
44
# Usage (in your project folder):
5-
# curl -fsSL https://raw.githubusercontent.com/MertCapkin/GraphStack/main/scripts/bootstrap.sh | bash
5+
# curl -fsSL https://raw.githubusercontent.com/MertCapkin/GraphStack/master/scripts/bootstrap.sh | bash
66
#
77
# Or: bash scripts/bootstrap.sh
88

0 commit comments

Comments
 (0)