diff options
| author | J Pipkin <j@dawnrazor.net> | 2012-09-09 01:37:24 -0500 | 
|---|---|---|
| committer | J Pipkin <j@dawnrazor.net> | 2012-09-09 01:37:24 -0500 | 
| commit | 9f8acac4b94b90a41a7faf16853b3750f8aa4b50 (patch) | |
| tree | 1b084a6803cee8753777ec54a55eeebed253c327 | |
| parent | df583c1d3ed91da454808204df381e13c1aceaad (diff) | |
| download | sbotools2-9f8acac4b94b90a41a7faf16853b3750f8aa4b50.tar.xz | |
fix backwards sense of noclean option handling
| -rwxr-xr-x | sboinstall | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -59,7 +59,7 @@ show_version and exit 0 if $vers;  show_usage and exit 0 unless exists $ARGV[0];  # setup any options -unshift @ARGV, $clean ? '-c' : '--noclean'; +unshift @ARGV, $clean ? '--noclean' : '-c';  unshift @ARGV, $distclean ? '-d' : '--distclean';  unshift @ARGV, '-n' if $no_install;  unshift @ARGV, '-i' if $non_int; | 
