Browse Source

log cleanup warnings

pull/530/head
brandonocasey 10 years ago
parent
commit
8582ba3887
  1. 4
      scripts/manifest-data.js

4
scripts/manifest-data.js

@ -64,12 +64,12 @@ var clean = function() {
try {
fs.unlinkSync(manifestFilepath);
} catch(e) {
// ignore error, must not exist
console.log(e);
}
try {
fs.unlinkSync(expectedFilepath);
} catch(e) {
// ignore error, must not exist
console.log(e);
}
}

Loading…
Cancel
Save