Skip to content

Commit

Permalink
Fix glaring issue with Path.PathSeparator
Browse files Browse the repository at this point in the history
  • Loading branch information
Perksey authored Jun 6, 2024
1 parent 7edaf4a commit 548fd51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/nuke/Native/SilkDroid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ string AndroidHome
envVars["ANDROID_NDK_HOME"] = ndk;
}

using var process = StartShell($".{Path.PathSeparator}gradlew build", silkDroid, envVars);
using var process = StartShell($".{Path.DirectorySeparatorChar}gradlew build", silkDroid, envVars);
process.AssertZeroExitCode();
var ret = process.Output;
CopyFile
Expand Down

0 comments on commit 548fd51

Please sign in to comment.