Don't show exist errors

pull/223/head
Ruben Daniels 2015-11-10 22:41:15 +00:00
rodzic 043a47204d
commit 67a184cd02
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -51,6 +51,7 @@ define(function(require, exports, module) {
"ENOTDIR" : "{Totype|type} {to|filename} is not a directory",
"EEXIST" : "{Totype|type} {to|filename} already exists",
"EACCES" : "Access denied acccessing this {type}",
"ENOSPC" : "Your disk is full. Please create more space. Could not write {filename}",
"EDISCONNECT" : "The connection went away. Please try again.",
"ENOTCONNECTED" : "You are disconnected. "
+ "Please check your connection and try again"
@ -81,6 +82,7 @@ define(function(require, exports, module) {
fs.on("userError", function(e) {
if (!m[e.name]) return;
if (e.error.code == "EEXIST") return;
var args = e.args;
var path = args[0];