Update install.ps1

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
This commit is contained in:
Namhyeon Go 2026-04-18 14:37:42 +09:00 committed by GitHub
parent ab96f1462b
commit b78f0c9af9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,8 +8,13 @@
# irm https://welson.js.org/install.ps1 | iex -dev main # irm https://welson.js.org/install.ps1 | iex -dev main
# irm https://welson.js.org/install.ps1 | iex -dev dev # irm https://welson.js.org/install.ps1 | iex -dev dev
# #
# Central default branch configuration for this install script.
# Update this value if the repository's default branch changes.
$DefaultBranch = "master"
param( param(
[string]$dev = "master" # Default branch # Branch to install from; defaults to the repository's configured primary branch.
[string]$dev = $DefaultBranch
) )
$ErrorActionPreference = "Stop" $ErrorActionPreference = "Stop"