You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'A file with the same name already exists in the destination folder. Use --overwrite to replace it with a new version.',
48
62
error
@@ -62,7 +76,9 @@ class FilesUploadCommand extends BoxCommand {
62
76
);
63
77
}
64
78
65
-
DEBUG.output(`File already exists in folder; uploading as new version of file ${existingFileID}`);
79
+
DEBUG.output(
80
+
`File already exists in folder; uploading as new version of file ${existingFileID}`
81
+
);
66
82
67
83
// Re-create the stream since the first attempt consumed it
68
84
constversionStream=createReadStream(args.path);
@@ -79,7 +95,8 @@ class FilesUploadCommand extends BoxCommand {
79
95
}
80
96
}
81
97
82
-
FilesUploadCommand.description='Upload a file to a folder. Use --overwrite to automatically replace an existing file with the same name by uploading a new version';
98
+
FilesUploadCommand.description=
99
+
'Upload a file to a folder. Use --overwrite to automatically replace an existing file with the same name by uploading a new version';
0 commit comments