Skip to content

Commit

Permalink
Merge pull request #33 from xk0fe/master
Browse files Browse the repository at this point in the history
Application Name
  • Loading branch information
meslubi2021 authored Aug 15, 2024
2 parents b1f6c1f + 08a7dfa commit e02862f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Facebook.Unity.Editor/android/FacebookAndroidUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ private static string GetKeyHash(string alias, string keyStore, string keystoreP
var arguments = @"""keytool -storepass {0} -keypass {1} -exportcert -alias {2} -keystore {3} | openssl sha1 -binary | openssl base64""";
if (Application.platform == RuntimePlatform.WindowsEditor)
{
proc.StartInfo.FileName = "cmd";
proc.StartInfo.FileName = "cmd.exe";
arguments = @"/C " + arguments;
}
else
Expand Down Expand Up @@ -227,7 +227,7 @@ private static bool DoesCommandExist(string command)
var proc = new Process();
if (Application.platform == RuntimePlatform.WindowsEditor)
{
proc.StartInfo.FileName = "cmd";
proc.StartInfo.FileName = "cmd.exe";
proc.StartInfo.Arguments = @"/C" + command;
}
else
Expand Down

0 comments on commit e02862f

Please sign in to comment.