@@ -40,25 +40,25 @@ link-validator --url https://example.com --output new-sitemap.md --diff old-site
4040** Windows (PowerShell):**
4141``` powershell
4242# Install to default location and add to PATH
43- irm https://raw.githubusercontent.com/Aaronontheweb/link-validator/main /install.ps1 | iex
43+ irm https://raw.githubusercontent.com/Aaronontheweb/link-validator/dev /install.ps1 | iex
4444
4545# Install to custom location
46- irm https://raw.githubusercontent.com/Aaronontheweb/link-validator/main /install.ps1 | iex -ArgumentList "-InstallPath", "C:\tools\linkvalidator"
46+ irm https://raw.githubusercontent.com/Aaronontheweb/link-validator/dev /install.ps1 | iex -ArgumentList "-InstallPath", "C:\tools\linkvalidator"
4747
4848# Install without adding to PATH
49- irm https://raw.githubusercontent.com/Aaronontheweb/link-validator/main /install.ps1 | iex -ArgumentList "-SkipPath"
49+ irm https://raw.githubusercontent.com/Aaronontheweb/link-validator/dev /install.ps1 | iex -ArgumentList "-SkipPath"
5050```
5151
5252** Linux/macOS (Bash):**
5353``` bash
5454# Install to default location and add to PATH
55- curl -fsSL https://raw.githubusercontent.com/Aaronontheweb/link-validator/main /install.sh | bash
55+ curl -fsSL https://raw.githubusercontent.com/Aaronontheweb/link-validator/dev /install.sh | bash
5656
5757# Install to custom location
58- curl -fsSL https://raw.githubusercontent.com/Aaronontheweb/link-validator/main /install.sh | bash -s -- --dir ~ /.local/bin
58+ curl -fsSL https://raw.githubusercontent.com/Aaronontheweb/link-validator/dev /install.sh | bash -s -- --dir ~ /.local/bin
5959
6060# Install without adding to PATH
61- curl -fsSL https://raw.githubusercontent.com/Aaronontheweb/link-validator/main /install.sh | bash -s -- --skip-path
61+ curl -fsSL https://raw.githubusercontent.com/Aaronontheweb/link-validator/dev /install.sh | bash -s -- --skip-path
6262```
6363
6464### Option 2: Download Binary
@@ -107,7 +107,7 @@ The documentation includes ready-to-use examples for:
107107``` yaml
108108# GitHub Actions
109109- name : Install LinkValidator
110- run : curl -fsSL https://raw.githubusercontent.com/Aaronontheweb/link-validator/main /install.sh | bash
110+ run : curl -fsSL https://raw.githubusercontent.com/Aaronontheweb/link-validator/dev /install.sh | bash
111111
112112- name : Validate Links
113113 run : link-validator --url http://localhost:3000 --strict
0 commit comments