From 987436fed27210bd15aab2a6986a8e115b3f2682 Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Mon, 30 Aug 2021 13:47:08 +0200 Subject: [PATCH] Adjust switch order --- bootstrap-haskell.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootstrap-haskell.ps1 b/bootstrap-haskell.ps1 index c81cfd8..28c8be3 100644 --- a/bootstrap-haskell.ps1 +++ b/bootstrap-haskell.ps1 @@ -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