Skip to content

Commit e78540b

Browse files
committed
bower.json: add missing aff dependency
1 parent e8e4159 commit e78540b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

bower.json

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"package.json"
1717
],
1818
"dependencies": {
19+
"purescript-aff": "^7.0.0",
1920
"purescript-exceptions": "^6.0.0",
2021
"purescript-node-event-emitter": "https://github.com/purescript-node/purescript-node-event-emitter.git#^3.0.0",
2122
"purescript-foreign": "^7.0.0",

test/Main.purs

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ spawnLs = do
7272
Normally 0 -> log $ "ls exited with 0"
7373
Normally i -> liftEffect $ throw $ "ls had non-zero exit: " <> show i
7474
BySignal sig -> liftEffect $ throw $ "ls exited with sig: " <> show sig
75+
BySysError -> liftEffect $ throw "ls exited with system error"
7576

7677
nonExistentExecutable :: Aff Unit
7778
nonExistentExecutable = do

0 commit comments

Comments
 (0)