diff options
author | TimeZlicer <llihder@gmail.com> | 2023-03-13 00:21:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-12 17:21:21 +0100 |
commit | 05a41b31bc4d2b973662ac370458697c0bf712a9 (patch) | |
tree | 5a06bb56905d4ca2d0f249bc80f61e0713d7bda1 /Ryujinx.Ava/Ryujinx.Ava.csproj | |
parent | eed17f963efd978d01a7fe11f187f5470bbe67a2 (diff) |
Misc: Support space in path on macOS distribution (#4462)1.1.661
* .
* Apply suggestions from code review
Co-authored-by: TSRBerry <20988865+TSRBerry@users.noreply.github.com>
* wildcard(*) needs to be outside of quotes(") for cp to work
---------
Co-authored-by: TSRBerry <20988865+TSRBerry@users.noreply.github.com>
Diffstat (limited to 'Ryujinx.Ava/Ryujinx.Ava.csproj')
-rw-r--r-- | Ryujinx.Ava/Ryujinx.Ava.csproj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Ava/Ryujinx.Ava.csproj b/Ryujinx.Ava/Ryujinx.Ava.csproj index 61a2bcb7..325ceb2d 100644 --- a/Ryujinx.Ava/Ryujinx.Ava.csproj +++ b/Ryujinx.Ava/Ryujinx.Ava.csproj @@ -13,7 +13,7 @@ </PropertyGroup> <Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="$([MSBuild]::IsOSPlatform('OSX'))"> - <Exec Command="codesign --entitlements $(ProjectDir)..\distribution\macos\entitlements.xml -f --deep -s $(SigningCertificate) $(TargetDir)$(TargetName)" /> + <Exec Command="codesign --entitlements '$(ProjectDir)..\distribution\macos\entitlements.xml' -f --deep -s $(SigningCertificate) '$(TargetDir)$(TargetName)'" /> </Target> <PropertyGroup Condition="'$(RuntimeIdentifier)' != ''"> |