File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 25
25
/unity_dlls /
26
26
27
27
.DS_Store
28
+
29
+ external_tools /
Original file line number Diff line number Diff line change @@ -223,6 +223,8 @@ project.ext {
223
223
224
224
// Directory for intermediate and final build outputs.
225
225
buildDir = new File (scriptDirectory, " build" )
226
+ // Directory for external tools.
227
+ externalToolsDir = new File (scriptDirectory, " external_tools" )
226
228
// Directory for testing.
227
229
testDir = new File (scriptDirectory, " test_output" )
228
230
// Version of the plugin (update this with CHANGELOG.md on each release).
@@ -282,7 +284,7 @@ project.ext {
282
284
symbolDatabaseExtension = pdbSupported ? " .pdb" : " .dll.mdb"
283
285
// Changelog file.
284
286
changelog = new File (scriptDirectory, " CHANGELOG.md" )
285
- pythonBootstrapDir = new File (buildDir , " python_bootstrap" )
287
+ pythonBootstrapDir = new File (externalToolsDir , " python_bootstrap" )
286
288
pythonBinDir = new File (new File (pythonBootstrapDir, " python" ), " bin" )
287
289
// Python binary after it has been bootstrapped.
288
290
pythonExe = new File (pythonBinDir, " python3" )
You can’t perform that action at this time.
0 commit comments