diff --git a/ghcup-0.0.2.json b/ghcup-0.0.2.json index a2843dd..14740b5 100644 --- a/ghcup-0.0.2.json +++ b/ghcup-0.0.2.json @@ -2500,6 +2500,13 @@ "0.1.8": { "viArch": { "A_64": { + "Linux_Alpine": { + "unknown_versioning": { + "dlHash": "7ffcd4c3de156e895b648c75a36c762be2a4932883f3cd598f7a483c97d4a8a9", + "dlSubdir": null, + "dlUri": "https://downloads.haskell.org/~ghcup/0.1.8/x86_64-linux-ghcup-0.1.8" + } + }, "FreeBSD": { "unknown_versioning": { "dlHash": "442cdfe1b4525a327d9566e6270f909f7deba21c16dd4c7912537cf67e6cd521", @@ -2523,6 +2530,13 @@ } }, "A_32": { + "Linux_Alpine": { + "unknown_versioning": { + "dlHash": "18ab162920cea662feae4b08f39d3879e9e416fde7b734afd8072c39d3c43cde", + "dlSubdir": null, + "dlUri": "https://downloads.haskell.org/~ghcup/0.1.8/i386-linux-ghcup-0.1.8" + } + }, "Linux_UnknownLinux": { "unknown_versioning": { "dlHash": "18ab162920cea662feae4b08f39d3879e9e416fde7b734afd8072c39d3c43cde", diff --git a/lib/GHCup/Data/GHCupDownloads.hs b/lib/GHCup/Data/GHCupDownloads.hs index 2020638..baee504 100644 --- a/lib/GHCup/Data/GHCupDownloads.hs +++ b/lib/GHCup/Data/GHCupDownloads.hs @@ -2164,6 +2164,7 @@ ghcupDownloads = M.fromList ) , (Darwin , M.fromList [(Nothing, ghcup_64_darwin10_13)]) , (FreeBSD, M.fromList [(Nothing, ghcup_64_freebsd)]) + , (Linux Alpine, M.fromList [(Nothing, ghcup_64_linux)]) ] ) , ( A_32 @@ -2171,6 +2172,7 @@ ghcupDownloads = M.fromList [ ( Linux UnknownLinux , M.fromList [(Nothing, ghcup_32_linux)] ) + , (Linux Alpine, M.fromList [(Nothing, ghcup_32_linux)]) ] ) ]