diff options
-rw-r--r-- | perl-install/install_steps_auto_install.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_auto_install.pm b/perl-install/install_steps_auto_install.pm index 93b330fac..4e48dc8a5 100644 --- a/perl-install/install_steps_auto_install.pm +++ b/perl-install/install_steps_auto_install.pm @@ -21,7 +21,7 @@ sub new { my ($type, $o) = @_; # Handle legacy options - $o->{interactive} ||= 'gtk' if $graphical; + $o->{interactive} ||= 'gtk' if $graphical || !is_empty_array_ref($o->{interactiveSteps}); $o->{interactiveSteps} ||= [ @graphical_steps ]; push @{$o->{interactiveSteps}}, qw(enteringStep formatMountPartitions beforeInstallPackages installPackages); |