1
0
mirror of https://github.com/minio/mc.git synced 2025-11-10 13:42:32 +03:00

ui: consistenly use "flag" instead of "option" in error messages (#2325)

This commit is contained in:
poornas
2017-12-06 02:30:10 -08:00
committed by Nitish Tiwari
parent 1fd03fb81f
commit 399187c4fb
5 changed files with 5 additions and 5 deletions

View File

@@ -127,7 +127,7 @@ func checkCopySyntaxTypeC(srcURLs []string, tgtURL string, isRecursive bool) {
}
if srcContent.Type.IsDir() && !isRecursive {
fatalIf(errInvalidArgument().Trace(srcURL), "To copy a folder requires --recursive option.")
fatalIf(errInvalidArgument().Trace(srcURL), "To copy a folder requires --recursive flag.")
}
// Check target.