Skip to content

Commit

Permalink
fixed build target if in SettingsCopier.cs (ValveSoftware#713 and par…
Browse files Browse the repository at this point in the history
  • Loading branch information
TayouVR authored and Tayou committed Jun 12, 2020
1 parent db9e350 commit 91fcfa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Editor/SettingsCopier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ private static void CreatePath(string path)
[PostProcessBuildAttribute(1)]
public static void OnPostprocessBuild(BuildTarget target, string pathToBuiltProject)
{
if (target != BuildTarget.StandaloneLinux64 && target != BuildTarget.StandaloneWindows)
if (target != BuildTarget.StandaloneLinux64 && target != BuildTarget.StandaloneWindows && target != BuildTarget.StandaloneWindows64)
return;

OpenVRSettings settings = OpenVRSettings.GetSettings();
Expand Down

0 comments on commit 91fcfa5

Please sign in to comment.