Skip to content

Commit 6ff4d55

Browse files
committedJan 29, 2014
Also catch Errno::EPIPE in uglify and gzip
1 parent 58a92e6 commit 6ff4d55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎lib/opal/util.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def uglify(str)
99
i.close_write
1010
return i.read
1111
end
12-
rescue Errno::ENOENT
12+
rescue Errno::ENOENT, Errno::EPIPE
1313
$stderr.puts '"uglifyjs" command not found (install with: "npm install -g uglify-js")'
1414
nil
1515
end
@@ -21,7 +21,7 @@ def gzip(str)
2121
i.close_write
2222
return i.read
2323
end
24-
rescue Errno::ENOENT
24+
rescue Errno::ENOENT, Errno::EPIPE
2525
$stderr.puts '"gzip" command not found, it is required to produce the .gz version'
2626
nil
2727
end

0 commit comments

Comments
 (0)
Please sign in to comment.