diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-08-16 00:38:56 +0200 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-08-16 00:38:56 +0200 |
commit | 701a47a4bbbc77bb95b807827cd1fa3d5abfe49c (patch) | |
tree | f56b2309afc67bf981bfd8a0c87eb76a970e0ca3 | |
parent | fb84f53326c46700e8fc5c383f0a7a3425177c58 (diff) | |
download | sbotools2-701a47a4bbbc77bb95b807827cd1fa3d5abfe49c.tar.xz |
sbo*: expand non-leading tabs into spaces to align things properly
-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); |