sbotools2

Maintenance fork of the original sbotools version 2
Log | Files | Refs | README

commit 0b64e862320636bee844e663ed41ebf235645e5b
parent df085e377b4714417f73ee6b69cfdd4b44692e20
Author: J Pipkin <j@dawnrazor.net>
Date:   Sun,  9 Sep 2012 00:50:34 -0500

fix bug from Getopt conversion where sboupgrade was getting -j setting with an initial space

Diffstat:
Msboinstall | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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;