Use --recursive instead of -r

This commit is contained in:
Tomaz Canabrava 2021-12-28 10:15:31 +00:00 committed by Andrius Štikonas
parent 36bb57c0dd
commit 770e16eb02
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ bool FileSystem::execChangePosixPermission(Report& report, const QString& device
{
d->m_posixPermissions,
tmpDir.path(),
QStringLiteral("-R")
QStringLiteral("--recursive")
});
const bool chmodStep = chmodCmd.run() && chmodCmd.exitCode() == 0;