summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Sima <ben@bensima.com>2025-11-26 22:57:13 -0500
committerBen Sima <ben@bensima.com>2025-11-26 22:57:13 -0500
commitf929bb23f9b55df81697579065cfeb42c4376799 (patch)
tree5d5a4eb40a918c9d3fe9995f6b688e5cda389f91
parent63c795ba496d36d8551fef435804dba895ecb1cb (diff)
Bild: mark Toml as not buildable
Toml files were marked as buildable but analyzeOne returned Nothing, causing them to fail instead of being skipped with [_].
-rw-r--r--Omni/Bild.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Omni/Bild.hs b/Omni/Bild.hs
index 3d14616..e1f5c46 100644
--- a/Omni/Bild.hs
+++ b/Omni/Bild.hs
@@ -514,7 +514,7 @@ isBuildableNs = \case
(Namespace _ Namespace.Sh) -> False
(Namespace _ Namespace.Scm) -> True
(Namespace _ Namespace.Rs) -> True
- (Namespace _ Namespace.Toml) -> True
+ (Namespace _ Namespace.Toml) -> False
-- | The default output directory. This is not IO because I don't want to
-- refactor all of my code right now, but it probably should be.