Skip to content

Commit

Permalink
[CI BUILD] test an error on Mac and Windows, to make sure error repor…
Browse files Browse the repository at this point in the history
…ting works
  • Loading branch information
mikeage committed Dec 10, 2023
1 parent 5d432c7 commit f856b7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/Scripts/Rendering/FfmpegPipe.cs
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,10 @@ public static string GetFfmpegExe()

string exeName = null;
#if UNITY_STANDALONE_WIN || UNITY_EDITOR_WIN
exeName = "ffmpeg.exe";
exeName = "ffmpeg.exe"
#endif
#if UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX
exeName = "ffmpeg";
exeName = "ffmpeg"
#endif

var combinedPath = Path.Combine(
Expand Down

0 comments on commit f856b7e

Please sign in to comment.