summaryrefslogtreecommitdiff
path: root/Setup.hs
blob: 938b9c134075f3140e29a2d5b9ff6e0637497335 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{-# LANGUAGE CPP #-}

module Main (main) where

import Distribution.Simple (defaultMain)
import System.Process (callCommand)

main :: IO ()
main = do
  callCommand "./scripts/generate.sh"
  defaultMain
  callCommand "./scripts/delete-generated.sh"