packages feed

alignment-0.2.0.0: test/Main.hs

module Main where

import System.Exit (exitWith)
import System.Process (rawSystem)

main :: IO ()
main =
  exitWith
    =<< rawSystem
      "cabal"
      [ "repl",
        "--with-compiler=doctest",
        "--repl-options=-w",
        "--repl-options=-Wdefault",
        "--repl-options=-Wno-inline-rule-shadowing",
        "lib:alignment"
      ]