Adjust switch order

This commit is contained in:
Julian Ospald 2021-08-30 13:47:08 +02:00
parent 96ac66e909
commit 987436fed2
Signed by: hasufell
GPG Key ID: 3786C5262ECB4A3F
1 changed files with 3 additions and 3 deletions

View File

@ -15,6 +15,8 @@
param (
# Run an interactive installation
[switch]$Interactive,
# Do minimal installation of ghcup and msys2 only
[switch]$Minimal,
# Specify the install root (default: 'C:\')
[string]$InstallDir,
# Instead of installing a new MSys2, use an existing installation
@ -32,9 +34,7 @@ param (
# Whether to install hls as well
[switch]$InstallHLS,
# Skip adjusting cabal.config with mingw paths
[switch]$NoAdjustCabalConfig,
# Do minimal installation of ghcup and msys2 only
[switch]$Minimal
[switch]$NoAdjustCabalConfig
)
$Silent = !$Interactive