aboutsummaryrefslogtreecommitdiff
path: root/sboinstall
diff options
context:
space:
mode:
Diffstat (limited to 'sboinstall')
-rwxr-xr-xsboinstall9
1 files changed, 2 insertions, 7 deletions
diff --git a/sboinstall b/sboinstall
index 4652dfe..73a925f 100755
--- a/sboinstall
+++ b/sboinstall
@@ -52,11 +52,6 @@ for my $opt (@opts2) {
unshift (@ARGV, "-$opt $options{$opt}") if exists $options{$opt};
}
-# stringify the args
-my $string = '';
-for my $arg (@ARGV) {
- $string .= " $arg";
-}
-
-system ("/usr/sbin/sboupgrade -oN $string");
+unshift (@ARGV, '-oN');
+system ('/usr/sbin/sboupgrade', @ARGV);
exit 0;