mirror of
https://github.com/simonmichael/hledger.git
synced 2024-12-24 02:44:25 +03:00
ui: work around ghc 9.0 build failure (#1503)
Also remove obsolete shebang line.
This commit is contained in:
parent
eb2da22f63
commit
4578d5d329
@ -1,5 +1,7 @@
|
||||
#!/usr/bin/env runhaskell
|
||||
module Main
|
||||
(module Hledger.UI)
|
||||
module Main (main)
|
||||
where
|
||||
import Hledger.UI (main)
|
||||
-- import Hledger.UI (main)
|
||||
-- workaround for GHC 9.0.1 https://gitlab.haskell.org/ghc/ghc/-/issues/19397, #1503
|
||||
import qualified Hledger.UI.Main (main)
|
||||
main :: IO ()
|
||||
main = Hledger.UI.Main.main
|
||||
|
Loading…
Reference in New Issue
Block a user