[GRASS-SVN] r67946 - grass/trunk/general/g.copy
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Feb 25 05:10:28 PST 2016
Author: mlennert
Date: 2016-02-25 05:10:28 -0800 (Thu, 25 Feb 2016)
New Revision: 67946
Modified:
grass/trunk/general/g.copy/main.c
Log:
Claryfing message when to filename already exists
Modified: grass/trunk/general/g.copy/main.c
===================================================================
--- grass/trunk/general/g.copy/main.c 2016-02-25 09:12:47 UTC (rev 67945)
+++ grass/trunk/general/g.copy/main.c 2016-02-25 13:10:28 UTC (rev 67946)
@@ -73,7 +73,7 @@
continue;
}
if (M_find(n, to, G_mapset()) && !(module->overwrite)) {
- G_warning(_("<%s> already exists"), to);
+ G_warning(_("<%s> already exists. File not copied."), to);
continue;
}
if (G_legal_filename(to) < 0) {
More information about the grass-commit
mailing list