Skip to content

Commit

Permalink
NBI: disable update check again
Browse files Browse the repository at this point in the history
 - Hide check-for-updates step from the (windows) installer again
   since it is a no-op with the current NB release model
 - reverts apache#1348 without changing codepaths outside the checkbox
   logic to reduce risks of other side effects
 - can be re-enabled using a property
  • Loading branch information
mbien committed Jul 8, 2024
1 parent 76e1f35 commit ddf3678
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ protected void initialize() {
removeUserdirCheckbox.doClick();
}

if (nbBasePresent) {
if (nbBasePresent && Boolean.getBoolean(CHECK_FOR_UPDATES_PROPERTY)) {
checkForUpdatesCheckbox.setSelected(true);
System.setProperty(CHECK_FOR_UPDATES_CHECKBOX_PROPERTY, Boolean.TRUE.toString());

Expand Down

0 comments on commit ddf3678

Please sign in to comment.