diff options
-rwxr-xr-x | sboclean | 10 | ||||
-rwxr-xr-x | sboinstall | 36 | ||||
-rwxr-xr-x | sboremove | 8 | ||||
-rwxr-xr-x | sboupgrade | 18 |
4 files changed, 36 insertions, 36 deletions
@@ -43,11 +43,11 @@ EOF my ($help, $vers, $clean_dist, $clean_work, $interactive); GetOptions( - 'help|h' => \$help, - 'version|v' => \$vers, - 'clean-dist|d' => \$clean_dist, - 'clean-work|w' => \$clean_work, - 'interactive|i' => \$interactive, + 'help|h' => \$help, + 'version|v' => \$vers, + 'clean-dist|d' => \$clean_dist, + 'clean-work|w' => \$clean_work, + 'interactive|i' => \$interactive, ); if ($help) { show_usage(); exit 0 } @@ -53,15 +53,15 @@ my $jobs = $config{JOBS}; my ($help, $vers, $no_install, $non_int, $no_reqs, $compat32); GetOptions( - 'help|h' => \$help, - 'version|v' => \$vers, - 'noclean|c=s' => \$noclean, - 'distclean|d=s' => \$distclean, - 'noinstall|i' => \$no_install, - 'jobs|j=s' => \$jobs, - 'compat32|p' => \$compat32, - 'nointeractive|r' => \$non_int, - 'norequirements|R' => \$no_reqs, + 'help|h' => \$help, + 'version|v' => \$vers, + 'noclean|c=s' => \$noclean, + 'distclean|d=s' => \$distclean, + 'noinstall|i' => \$no_install, + 'jobs|j=s' => \$jobs, + 'compat32|p' => \$compat32, + 'nointeractive|r' => \$non_int, + 'norequirements|R' => \$no_reqs, ); if ($help) { show_usage(); exit 0 } @@ -184,15 +184,15 @@ unless ($non_int) { } my ($failures, $exit) = process_sbos( - TODO => $build_queue, - CMDS => \%commands, - OPTS => \%options, - JOBS => $jobs, - LOCATIONS => \%locations, - NOINSTALL => $no_install, - NOCLEAN => $noclean, - DISTCLEAN => $distclean, - NON_INT => $non_int, + TODO => $build_queue, + CMDS => \%commands, + OPTS => \%options, + JOBS => $jobs, + LOCATIONS => \%locations, + NOINSTALL => $no_install, + NOCLEAN => $noclean, + DISTCLEAN => $distclean, + NON_INT => $non_int, ); print_failures($failures); @@ -40,10 +40,10 @@ EOF my ($help, $vers, $non_int, $alwaysask, @excluded); GetOptions( - 'help|h' => \$help, - 'version|v' => \$vers, - 'nointeractive' => \$non_int, - 'alwaysask|a' => \$alwaysask, + 'help|h' => \$help, + 'version|v' => \$vers, + 'nointeractive' => \$non_int, + 'alwaysask|a' => \$alwaysask, ); if ($help) { show_usage(); exit 0 } @@ -205,15 +205,15 @@ unless ($non_int) { } my ($failures, $exit) = process_sbos( - TODO => $upgrade_queue, - CMDS => \%commands, - OPTS => \%options, - JOBS => $jobs, - LOCATIONS => \%locations, - NOINSTALL => $no_install, - NOCLEAN => $noclean, - DISTCLEAN => $distclean, - NON_INT => $non_int, + TODO => $upgrade_queue, + CMDS => \%commands, + OPTS => \%options, + JOBS => $jobs, + LOCATIONS => \%locations, + NOINSTALL => $no_install, + NOCLEAN => $noclean, + DISTCLEAN => $distclean, + NON_INT => $non_int, ); print_failures($failures); |