diff options
author | Ben Sima <ben@bsima.me> | 2019-03-26 14:22:57 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-03-26 14:22:57 -0700 |
commit | 5d5a5ed8d6d63046ce7452c7a20c6218699b6dfd (patch) | |
tree | 852acbf37a3dc9198de72c665c971f871f8205ba /chip/make | |
parent | 1c51ae337b5a88f17e85ec13be78f6c05802dfc8 (diff) |
chip/make aero apps
Diffstat (limited to 'chip/make')
-rwxr-xr-x | chip/make | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -48,7 +48,7 @@ bild :: App -> IO () bild app = do say $ "make: " ++ name app apex app `catch` nop - -- aero app `catch` nop + aero app `catch` nop say :: String -> IO () say = putStrLn @@ -98,7 +98,7 @@ aero App {..} = callCommand $ intercalate " " , ghcopts , "-iaero -ilore" , "-main-is", entrypoint - , "--make", "apex/" ++ entrypoint ++ ".hs" + , "--make", "aero/" ++ entrypoint ++ ".hs" , "-o bild/" ++ name ] |