Thanks to visit codestin.com Credit goes to github.com
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 87dc4d6 commit c87ae80Copy full SHA for c87ae80
2 files changed
Misc/NEWS
@@ -275,6 +275,9 @@ Tools/Demos
275
Windows
276
-------
277
278
+- Issue #25144: Ensures TargetDir is set before continuing with custom
279
+ install.
280
+
281
- Issue #27469: Adds a shell extension to the launcher so that drag and drop
282
works correctly.
283
Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
@@ -327,6 +327,9 @@ class PythonBootstrapperApplication : public CBalBaseBootstrapperApplication {
327
case ID_CUSTOM_INSTALL_BUTTON:
328
SavePageSettings();
329
330
+ hr = EnsureTargetDir();
331
+ ExitOnFailure(hr, L"Failed to set TargetDir");
332
333
hr = BalGetStringVariable(L"TargetDir", &targetDir);
334
if (SUCCEEDED(hr)) {
335
// TODO: Check whether directory exists and contains another installation
0 commit comments