File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ project.ext {
126
126
" MONO_EXE" , false , {
127
127
unityRootDirTree. matching {
128
128
include (operatingSystem == OperatingSystem . WINDOWS ?
129
- " **/bin/mono.bat " : " **/bin/mono" )
129
+ " **/bin/mono.exe " : " **/bin/mono" )
130
130
exclude unitySearchDirExcludes
131
131
}
132
132
})
@@ -318,9 +318,9 @@ project.ext {
318
318
pythonBootstrapDir = new File (externalToolsDir, " python_bootstrap" )
319
319
pythonBinDir = new File (new File (pythonBootstrapDir, " python" ), " bin" )
320
320
// Python binary after it has been bootstrapped.
321
- pythonExe = new File (pythonBinDir , " python3 " )
321
+ pythonExe = new File (new File (pythonBootstrapDir , " python " ), " python " )
322
322
// Pip binary after it has been bootstrapped.
323
- pipExe = new File (pythonBinDir , " pip3" )
323
+ pipExe = new File (new File ( new File (pythonBootstrapDir, " python " ), " Scripts " ) , " pip3" )
324
324
// Python packages required by export_unity_package.py
325
325
exportUnityPackageRequirements = [" absl-py" , " PyYAML" , " packaging" ]
326
326
// Python packages required by gen_guids.py
You can’t perform that action at this time.
0 commit comments