* fixed remove command issue
This commit is contained in:
parent
752b1722bb
commit
b21f90c75e
1 changed files with 1 additions and 1 deletions
|
|
@ -62,7 +62,7 @@ doFileSnapshot::doFileSnapshot(std::string dirname,
|
||||||
}
|
}
|
||||||
else if (!res && rmFiles)
|
else if (!res && rmFiles)
|
||||||
{
|
{
|
||||||
s = std::string("/bin/rm ") + _dirname+ "/" + _filename + "*";
|
s = std::string("/bin/rm -f ") + _dirname+ "/" + _filename + "*";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Reference in a new issue