Skip to content

Commit

Permalink
Fixed RedistCopy.. It was backwards. Whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
rlabrecque committed Sep 1, 2015
1 parent 27a7904 commit cb39ad7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Editor/Steamworks.NET/RedistCopy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ public class RedistCopy {
[PostProcessBuild]
public static void OnPostprocessBuild(BuildTarget target, string pathToBuiltProject) {
#if !DISABLEREDISTCOPY
if (target != BuildTarget.StandaloneWindows || target != BuildTarget.StandaloneWindows64 ||
target != BuildTarget.StandaloneOSXIntel || target != BuildTarget.StandaloneOSXIntel64 || target != BuildTarget.StandaloneOSXUniversal ||
target != BuildTarget.StandaloneLinux || target != BuildTarget.StandaloneLinux64 || target != BuildTarget.StandaloneLinuxUniversal) {
if (target != BuildTarget.StandaloneWindows && target != BuildTarget.StandaloneWindows64 &&
target != BuildTarget.StandaloneOSXIntel && target != BuildTarget.StandaloneOSXIntel64 && target != BuildTarget.StandaloneOSXUniversal &&
target != BuildTarget.StandaloneLinux && target != BuildTarget.StandaloneLinux64 && target != BuildTarget.StandaloneLinuxUniversal) {
return;
}

Expand Down

0 comments on commit cb39ad7

Please sign in to comment.