diff options
-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 ] |