Ignore errors writing to the cache

This commit is contained in:
Kevin Sawicki
2015-02-02 14:07:39 -08:00
parent 9e11914b8b
commit 84453d5441

View File

@@ -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