diff options
author | J Pipkin <j@dawnrazor.net> | 2012-09-09 00:50:34 -0500 |
---|---|---|
committer | J Pipkin <j@dawnrazor.net> | 2012-09-09 00:50:34 -0500 |
commit | 0b64e862320636bee844e663ed41ebf235645e5b (patch) | |
tree | f33e79ca7013cbd7f959502c7bdbe4e348e7122d | |
parent | df085e377b4714417f73ee6b69cfdd4b44692e20 (diff) | |
download | sbotools2-0b64e862320636bee844e663ed41ebf235645e5b.tar.xz |
fix bug from Getopt conversion where sboupgrade was getting -j setting with an initial space
-rwxr-xr-x | sboinstall | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |