From 770e16eb028a9d73b571486d3a714b8da883aae7 Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Tue, 28 Dec 2021 10:15:31 +0000 Subject: [PATCH] Use --recursive instead of -r --- src/fs/filesystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fs/filesystem.cpp b/src/fs/filesystem.cpp index ec57a1f..5a921b8 100644 --- a/src/fs/filesystem.cpp +++ b/src/fs/filesystem.cpp @@ -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;