Simplify chmod usage

This commit is contained in:
Piotr Puszkiewicz 2017-02-28 18:53:13 -08:00
parent 664f089985
commit 0100fd9aa7

View file

@ -164,6 +164,7 @@
<Target Name="ChmodPublishDir"
AfterTargets="CrossgenPublishDir">
<Chmod Glob="$(SdkOutputDirectory)/**/*" Mode="u=rw,g=r,o=r" />
<Exec Command="find $(SdkOutputDirectory) -type d -exec chmod 755 {} \;" />
<Exec Command="find $(SdkOutputDirectory) -type f -exec chmod 644 {} \;" />
</Target>
</Project>