mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-25 23:37:11 +02:00
misc: chore: Use collection expressions everywhere else (except VP9)
This commit is contained in:
parent
0f857400b6
commit
ac838aa81d
59 changed files with 3246 additions and 2452 deletions
|
@ -434,7 +434,8 @@ namespace Ryujinx.Ava
|
|||
// On macOS, ensure that we remove the quarantine bit to prevent Gatekeeper from blocking execution.
|
||||
if (OperatingSystem.IsMacOS())
|
||||
{
|
||||
using Process xattrProcess = Process.Start("xattr", new List<string> { "-d", "com.apple.quarantine", updateFile });
|
||||
using Process xattrProcess = Process.Start("xattr",
|
||||
[ "-d", "com.apple.quarantine", updateFile ]);
|
||||
|
||||
xattrProcess.WaitForExit();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue