Skip to content

Commit

Permalink
Folder Open Removed could cause trouble with CI
Browse files Browse the repository at this point in the history
  • Loading branch information
BLaZeKiLL committed Oct 4, 2023
1 parent ea568ab commit d24685c
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions Assets/Editor/Build/Builder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ private static void BuildWindowsDebug() {
};

var report = BuildPipeline.BuildPlayer(options);

if (report.summary.result == BuildResult.Succeeded) {
EditorUtility.RevealInFinder("Build/Windows/Mono-Debug");
}
}

[MenuItem("Build/Windows/Release")]
Expand All @@ -51,10 +47,6 @@ private static void BuildWindowsRelease() {
};

var report = BuildPipeline.BuildPlayer(options);

if (report.summary.result == BuildResult.Succeeded) {
EditorUtility.RevealInFinder("Build/Windows/Mono-Release");
}
}

#endregion
Expand All @@ -77,10 +69,6 @@ private static void BuildMacDebug() {
};

var report = BuildPipeline.BuildPlayer(options);

if (report.summary.result == BuildResult.Succeeded) {
EditorUtility.RevealInFinder("Build/Osx/Mono-Debug");
}
}

[MenuItem("Build/Mac/Release")]
Expand All @@ -100,10 +88,6 @@ private static void BuildMacRelease() {
};

var report = BuildPipeline.BuildPlayer(options);

if (report.summary.result == BuildResult.Succeeded) {
EditorUtility.RevealInFinder("Build/Osx/Mono-Release");
}
}

#endregion
Expand All @@ -126,10 +110,6 @@ private static void BuildAndroidDebug() {
};

var report = BuildPipeline.BuildPlayer(options);

if (report.summary.result == BuildResult.Succeeded) {
EditorUtility.RevealInFinder("Build/Android/Mono-Debug");
}
}

[MenuItem("Build/Android/Release")]
Expand All @@ -149,10 +129,6 @@ private static void BuildAndroidRelease() {
};

var report = BuildPipeline.BuildPlayer(options);

if (report.summary.result == BuildResult.Succeeded) {
EditorUtility.RevealInFinder("Build/Android/Mono-Release");
}
}

#endregion
Expand Down

0 comments on commit d24685c

Please sign in to comment.