We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b48a3c1 commit 90f8b5aCopy full SHA for 90f8b5a
CI.hs
@@ -349,7 +349,9 @@ buildDists ghcFlavor noGhcCheckout noBuilds versionSuffix = do
349
system_ "cd ghc && git clean -xdf && git submodule foreach git clean -xdf && git submodule foreach git checkout . && git checkout ."
350
else do
351
system_ "git clone https://gitlab.haskell.org/ghc/ghc.git"
352
- system_ "cd ghc && git fetch --tags"
+ case ghcFlavor of
353
+ GhcMaster hash -> system_ ("cd ghc && git fetch origin" ++ " " ++ hash)
354
+ _ -> system_ "cd ghc && git fetch origin --tags"
355
gitCheckout ghcFlavor
356
system_ "cd ghc && git checkout ."
357
0 commit comments