You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
codegen: Pass --installdir flag to cabal install (#249)
In some configurations, 'cabal install' will install the binary
into the current directory instead of in the global directory
on 'PATH', which can cause the haskell step to fail. Pass
the --installdir flag to avoid that.
Copy file name to clipboardExpand all lines: dev/proto-generate.sh
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -19,8 +19,9 @@ fi
19
19
20
20
echo"--- Haskell ---"
21
21
command -v cabal > /dev/null 2>&1|| { echo>&2"Haskell's 'cabal' command is not installed. Please install it first via https://www.haskell.org/ghcup/";exit 1; }
0 commit comments