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"