Commit a5fbba04 authored by Claes Sjofors's avatar Claes Sjofors

Wb export -a removed in cp

parent ea385221
......@@ -1168,7 +1168,7 @@ pwr_tStatus WbExpWNav::exp()
brow_GetUserData( node, (void **)&item);
sprintf( cmd, "cp -a %s %s", item->source, item->target);
sprintf( cmd, "cp %s %s", item->source, item->target);
printf( "%s\n", cmd);
sts = system( cmd);
if ( sts != 0) {
......@@ -1191,7 +1191,7 @@ pwr_tStatus WbExpWNav::exp()
if ( !cp->update)
continue;
sprintf( cmd, "cp -a %s %s", cp->source, cp->target);
sprintf( cmd, "cp %s %s", cp->source, cp->target);
printf( "%s\n", cmd);
sts = system( cmd);
if ( sts != 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment