aboutsummaryrefslogtreecommitdiffstats
path: root/src/VeriFuzz/Env.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/VeriFuzz/Env.hs')
-rw-r--r--src/VeriFuzz/Env.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/VeriFuzz/Env.hs b/src/VeriFuzz/Env.hs
index a20fd2d..0bbd290 100644
--- a/src/VeriFuzz/Env.hs
+++ b/src/VeriFuzz/Env.hs
@@ -13,6 +13,8 @@ Environment to run the simulator and synthesisers in a matrix.
module VeriFuzz.Env where
import Control.Monad.Trans.Reader
+import Prelude hiding (FilePath)
+import Shelly
import VeriFuzz.Icarus
import VeriFuzz.XST
import VeriFuzz.Yosys
@@ -27,5 +29,5 @@ type SimEnv = ReaderT SimMatrix IO
runAll :: SimEnv ()
runAll = do
- val <- asks xst
+ _ <- asks xst
shelly $ run_ "echo" ["Hello World"]