We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8383b3c commit 8a182f0Copy full SHA for 8a182f0
foundation-pak/build-foundation-pak-for-ghc-9.2.7.sh
@@ -4,6 +4,34 @@ set -x -e
4
# setup
5
############
6
7
+unameOut="$(uname -s)"
8
+case "${unameOut}" in
9
+ Linux*)
10
+ machine=Linux
11
+ sudo apt install python3-sphinx
12
+ ;;
13
+
14
+ Darwin*)
15
+ machine=Mac
16
+ brew install sphinx-doc
17
18
19
+ CYGWIN*)
20
+ machine=Cygwin
21
22
23
+ MINGW*)
24
+ machine=MinGw
25
26
27
+ MSYS_NT*)
28
+ machine=Git
29
30
31
+ *)
32
+ machine="UNKNOWN:${unameOut}"
33
+esac
34
35
stack --resolver lts-20.24 install alex-3.2.6 happy-1.20.0 zip-cmd-1.0.1
36
37
0 commit comments