mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-25 16:45:27 +00:00
Ignore output of failed delete command when the specified files are not present.
This commit is contained in:
parent
0bbc524cbe
commit
08da770c7d
|
@ -35,8 +35,8 @@
|
|||
<FilesToDelete Include=".\opentk.exe;..\..\opentk-1.0.*.exe" />
|
||||
</ItemGroup>
|
||||
<Delete Files="@(FilesToDelete)" Condition="'$(OS)' == 'Windows_NT'" />
|
||||
<Exec Command="rm .\opentk.exe" Condition="'$(OS)' != 'Windows_NT'" />
|
||||
<Exec Command="rm ..\..\opentk-1.0.*.exe" Condition="'$(OS)' != 'Windows_NT'" />
|
||||
<Exec Command="rm -f .\opentk.exe" Condition="'$(OS)' != 'Windows_NT'" />
|
||||
<Exec Command="rm -f ..\..\opentk-1.0.*.exe" Condition="'$(OS)' != 'Windows_NT'" />
|
||||
</Target>
|
||||
<Target Name="Rebuild">
|
||||
<CallTarget Targets="Clean" />
|
||||
|
|
Loading…
Reference in a new issue