We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c429f1 commit 76868f3Copy full SHA for 76868f3
Src/IronPythonTest/Cases/CaseExecuter.cs
@@ -30,7 +30,7 @@ private static string Executable {
30
var folder = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
31
string runner;
32
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) {
33
- runner = Path.Combine(folder, "ipy.exe");
+ runner = Path.Combine(folder, IntPtr.Size == 4 ? "ipy32.exe" : "ipy.exe");
34
if (File.Exists(runner)) return runner;
35
} else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux) || RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) {
36
runner = Path.Combine(folder, "ipy");
0 commit comments