summaryrefslogtreecommitdiff
path: root/chip
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2019-03-26 14:22:57 -0700
committerBen Sima <ben@bsima.me>2019-03-26 14:22:57 -0700
commit5d5a5ed8d6d63046ce7452c7a20c6218699b6dfd (patch)
tree852acbf37a3dc9198de72c665c971f871f8205ba /chip
parent1c51ae337b5a88f17e85ec13be78f6c05802dfc8 (diff)
chip/make aero apps
Diffstat (limited to 'chip')
-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
]