From caa9ecb3a79cf4d952d9c357ed5aa428aa4adb26 Mon Sep 17 00:00:00 2001
From: Ashley Yakeley <ashley@semantic.org>
Date: Sat, 23 Oct 2021 19:28:06 -0700
Subject: [PATCH] fullcheck.ps1: fix GHC versions

---
 fullcheck.ps1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fullcheck.ps1 b/fullcheck.ps1
index 7393e46..5a4b357 100644
--- a/fullcheck.ps1
+++ b/fullcheck.ps1
@@ -11,7 +11,7 @@ if (!$?) {Exit 1}
 if (!$?) {Exit 1}
 & "ghcup" "set" "cabal" "latest"
 if (!$?) {Exit 1}
-ForEach ($c in "ghc-8.8.4","ghc-8.10.7","ghc-9.0.1")
+ForEach ($c in "8.8.4","8.10.7","9.0.1")
 {
     & "ghcup" "install" "ghc" "$c"
     if (!$?) {Exit 1}
-- 
GitLab