Move generated graphs to be ignored by git

This commit is contained in:
2025-10-04 10:05:13 +01:00
parent 6eac8fbcf1
commit b519c835fa
2 changed files with 3 additions and 282 deletions
+3 -1
View File
@@ -39,7 +39,9 @@ postGenerationProcessing _ gw = do
return $ foldl' assignPushDoors w (w ^. cWorld . lWorld . doors)
generateGraphs :: IO ()
generateGraphs = TIO.writeFile "graph/itemCombinations.gv" combinationsDotGraph
generateGraphs = do
createDirectoryIfMissing True "generated/graph"
TIO.writeFile "generaged/graph/itemCombinations.gv" combinationsDotGraph
assignPushDoors :: World -> Door -> World
assignPushDoors w dr = case dr ^?! drPushedBy of