From 9f8acac4b94b90a41a7faf16853b3750f8aa4b50 Mon Sep 17 00:00:00 2001 From: J Pipkin Date: Sun, 9 Sep 2012 01:37:24 -0500 Subject: fix backwards sense of noclean option handling --- sboinstall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sboinstall b/sboinstall index 882603b..63fc4a4 100755 --- a/sboinstall +++ b/sboinstall @@ -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; -- cgit v1.2.3