Don't attempt to copy files if from == to
This commit is contained in:
parent
3b64f6f518
commit
788339e038
|
@ -109,7 +109,7 @@ void copyFile(string from, string to)
|
|||
|
||||
// copy file to local directory
|
||||
string command = string("cp ") + override_permission + from + string(" ") + to;
|
||||
if( systemp( command ) != 0 )
|
||||
if( from != to && systemp( command ) != 0 )
|
||||
{
|
||||
cerr << "\n\nError : An error occured while trying to copy file " << from << " to " << to << endl;
|
||||
exit(1);
|
||||
|
|
Loading…
Reference in New Issue