diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/standalone.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm index 382af1651..2b403d567 100644 --- a/perl-install/standalone.pm +++ b/perl-install/standalone.pm @@ -8,8 +8,9 @@ $ENV{SHARE_PATH} ||= "/usr/share"; sub pkgs_install { my ($in, @l) = @_; $in->suspend; - system('urpmi --auto --best-output ' . join(' ', @l)); + my $ret = system('urpmi --auto --best-output ' . join(' ', @l)); $in->resume; + $ret; } 1; |