File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change
1
+ Fixes launcher updates not being installed.
Original file line number Diff line number Diff line change @@ -464,11 +464,11 @@ class PythonBootstrapperApplication : public CBalBaseBootstrapperApplication {
464
464
465
465
LOC_STRING *pLocString = nullptr ;
466
466
LPCWSTR locKey = L" #(loc.Include_launcherHelp)" ;
467
- LONGLONG detectedLauncher ;
467
+ LONGLONG blockedLauncher ;
468
468
469
- if (SUCCEEDED (BalGetNumericVariable (L" DetectedLauncher " , &detectedLauncher )) && detectedLauncher ) {
469
+ if (SUCCEEDED (BalGetNumericVariable (L" BlockedLauncher " , &blockedLauncher )) && blockedLauncher ) {
470
470
locKey = L" #(loc.Include_launcherRemove)" ;
471
- } else if (SUCCEEDED (BalGetNumericVariable (L" DetectedOldLauncher" , &detectedLauncher )) && detectedLauncher ) {
471
+ } else if (SUCCEEDED (BalGetNumericVariable (L" DetectedOldLauncher" , &blockedLauncher )) && blockedLauncher ) {
472
472
locKey = L" #(loc.Include_launcherUpgrade)" ;
473
473
}
474
474
@@ -2671,7 +2671,7 @@ class PythonBootstrapperApplication : public CBalBaseBootstrapperApplication {
2671
2671
/* Elevate when installing for all users*/
2672
2672
L" InstallAllUsers or "
2673
2673
/* Elevate when installing the launcher for all users and it was not detected*/
2674
- L" (Include_launcher and InstallLauncherAllUsers and not DetectedLauncher )"
2674
+ L" (Include_launcher and InstallLauncherAllUsers and not BlockedLauncher )"
2675
2675
L" )" ,
2676
2676
L" "
2677
2677
};
Original file line number Diff line number Diff line change 11
11
EnableFeatureSelection =" yes"
12
12
Permanent =" yes"
13
13
Visible =" yes"
14
- InstallCondition =" (InstallAllUsers or InstallLauncherAllUsers) and Include_launcher and not DetectedLauncher " >
14
+ InstallCondition =" (InstallAllUsers or InstallLauncherAllUsers) and Include_launcher and not BlockedLauncher " >
15
15
<?if $(var.Platform)~=" ARM64" ?>
16
16
<MsiProperty Name =" ARM64_SHELLEXT" Value =" 1" />
17
17
<?endif ?>
25
25
EnableFeatureSelection =" yes"
26
26
Permanent =" yes"
27
27
Visible =" yes"
28
- InstallCondition =" not (InstallAllUsers or InstallLauncherAllUsers) and Include_launcher and not DetectedLauncher " >
28
+ InstallCondition =" not (InstallAllUsers or InstallLauncherAllUsers) and Include_launcher and not BlockedLauncher " >
29
29
<?if $(var.Platform)~=" ARM64" ?>
30
30
<MsiProperty Name =" ARM64_SHELLEXT" Value =" 1" />
31
31
<?endif ?>
You can’t perform that action at this time.
0 commit comments