log cleanup warnings
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -64,12 +64,12 @@ var clean = function() { | ... | @@ -64,12 +64,12 @@ var clean = function() { |
64 | try { | 64 | try { |
65 | fs.unlinkSync(manifestFilepath); | 65 | fs.unlinkSync(manifestFilepath); |
66 | } catch(e) { | 66 | } catch(e) { |
67 | // ignore error, must not exist | 67 | console.log(e); |
68 | } | 68 | } |
69 | try { | 69 | try { |
70 | fs.unlinkSync(expectedFilepath); | 70 | fs.unlinkSync(expectedFilepath); |
71 | } catch(e) { | 71 | } catch(e) { |
72 | // ignore error, must not exist | 72 | console.log(e); |
73 | } | 73 | } |
74 | } | 74 | } |
75 | 75 | ... | ... |
-
Please register or sign in to post a comment