We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8e4159 commit e78540bCopy full SHA for e78540b
bower.json
@@ -16,6 +16,7 @@
16
"package.json"
17
],
18
"dependencies": {
19
+ "purescript-aff": "^7.0.0",
20
"purescript-exceptions": "^6.0.0",
21
"purescript-node-event-emitter": "https://github.com/purescript-node/purescript-node-event-emitter.git#^3.0.0",
22
"purescript-foreign": "^7.0.0",
test/Main.purs
@@ -72,6 +72,7 @@ spawnLs = do
72
Normally 0 -> log $ "ls exited with 0"
73
Normally i -> liftEffect $ throw $ "ls had non-zero exit: " <> show i
74
BySignal sig -> liftEffect $ throw $ "ls exited with sig: " <> show sig
75
+ BySysError -> liftEffect $ throw "ls exited with system error"
76
77
nonExistentExecutable :: Aff Unit
78
nonExistentExecutable = do
0 commit comments