diff options
-rw-r--r-- | perl-install/install2.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 437d90b2c..762e1c814 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -546,6 +546,7 @@ sub main { MAIN: for ($o->{step} = $o->{steps}{first};; $o->{step} = getNextStep()) { $o->{steps}{$o->{step}}{entered}++; $o->enteringStep($o->{step}); + log::l("umask is ", umask()); eval { &{$install2::{$o->{step}}}($clicked, $o->{steps}{$o->{step}}{entered}); }; |