Fix unzip tool not being resolved

Change-Id: Idf77ef0e1c0b18c6dccbcf7b5666203dcfda65ab
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Vikas Pachdha
2021-11-09 13:31:25 +01:00
parent 0079b64b69
commit 3857ef8258

View File

@@ -136,6 +136,7 @@ static Utils::optional<Tool> unzipTool(const FilePath &src, const FilePath &dest
const QString destStr = dest.toString();
const QString args = result.command.arguments().replace("%{src}", srcStr).replace("%{dest}", destStr);
result.command.setArguments(args);
return result;
}
}
return {};