Skip to content

Commit

Permalink
[backend] fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschroeter committed Oct 22, 2013
1 parent 07891b2 commit 988b812
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backend/bs_worker
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ while (@ARGV) {
}
if ($ARGV[0] eq '--threads') {
shift @ARGV;
$treads = shift @ARGV;
$threads = shift @ARGV;
next;
}
if ($ARGV[0] eq '--cachedir') {
Expand Down Expand Up @@ -2261,7 +2261,7 @@ sub dobuild {
push @args, '--debug' if $buildinfo->{'debuginfo'};
push @args, '--arch', $arch;
push @args, '--jobs', $jobs if $jobs;
push @args, '--threads', $threads if $treads;
push @args, '--threads', $threads if $threads;
push @args, '--reason', "Building $packid for project '$projid' repository '$repoid' arch '$arch' srcmd5 '$buildinfo->{'srcmd5'}'";
push @args, '--disturl', $disturl;
push @args, '--linksources' if $localkiwi;
Expand Down

0 comments on commit 988b812

Please sign in to comment.