summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xchip/make4
1 files changed, 2 insertions, 2 deletions
diff --git a/chip/make b/chip/make
index 6eabae0..49d800e 100755
--- a/chip/make
+++ b/chip/make
@@ -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
]