Merge pull request #3136 from nichtich/patch-1

Execute .js filters with node
This commit is contained in:
John MacFarlane 2016-09-30 08:30:04 +02:00 committed by GitHub
commit 9a2d92a395

View file

@ -139,6 +139,7 @@ externalFilter f args' d = do
".pl" -> ("perl", f:args')
".rb" -> ("ruby", f:args')
".php" -> ("php", f:args')
".js" -> ("node", f:args')
_ -> (f, args')
else err 85 $ "Filter " ++ f ++ " not found"
when (f' /= f) $ do