From 0b64e862320636bee844e663ed41ebf235645e5b Mon Sep 17 00:00:00 2001 From: J Pipkin Date: Sun, 9 Sep 2012 00:50:34 -0500 Subject: fix bug from Getopt conversion where sboupgrade was getting -j setting with an initial space --- sboinstall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sboinstall b/sboinstall index ad61d70..ba9d8fa 100755 --- a/sboinstall +++ b/sboinstall @@ -65,7 +65,7 @@ unshift @ARGV, '-n' if $no_install; unshift @ARGV, '-i' if $non_int; unshift @ARGV, '-R' if $no_reqs; unshift @ARGV, '-p' if $compat32; -unshift @ARGV, "-j $jobs" if $jobs; +unshift @ARGV, "-j$jobs" if $jobs; system '/usr/sbin/sboupgrade', '-oN', @ARGV; -- cgit v1.2.3