From 84453d54415ea4b2fa54e0a328f80563baaebe16 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 2 Feb 2015 14:07:39 -0800 Subject: [PATCH] Ignore errors writing to the cache --- src/6to5.coffee | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/6to5.coffee b/src/6to5.coffee index d560b6771..448e47da5 100644 --- a/src/6to5.coffee +++ b/src/6to5.coffee @@ -122,9 +122,6 @@ transpile = (sourceCode, filePath, cachePath) -> try fs.writeFileSync(cachePath, js) - catch error - console.error('Error writing to cache at %s: %o', cachePath, error) - throw error js