From e116c73bc75188db5cae0cda3f5251c0f69b822b Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Wed, 24 Apr 2019 11:30:24 +0100 Subject: Add time and date by default --- app/Main.hs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'app') diff --git a/app/Main.hs b/app/Main.hs index 3e14b03..4e6b3bc 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -199,10 +199,9 @@ getConfig = maybe (return V.defaultConfig) V.parseConfigFile handleOpts :: Opts -> IO () handleOpts (Fuzz out configF _ _) = do config <- getConfig configF - _ <- V.runFuzz - config - V.defaultYosys - (V.fuzzMultiple 5 (S.fromText out) (V.proceduralSrc "top" config)) + _ <- V.runFuzz config + V.defaultYosys + (V.fuzzMultiple 5 Nothing (V.proceduralSrc "top" config)) return () handleOpts (Generate f c) = do config <- getConfig c -- cgit