Skip to content

Commit

Permalink
[backend] bs_worker: use signdummy regardless of localkiwi case
Browse files Browse the repository at this point in the history
  • Loading branch information
bugfinder committed Dec 19, 2012
1 parent e70f6ce commit 2967211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/bs_worker
Expand Up @@ -2031,7 +2031,7 @@ sub dobuild {
push @args, '--reason', "Building $packid for project '$projid' repository '$repoid' arch '$arch' srcmd5 '$buildinfo->{'srcmd5'}'";
push @args, '--disturl', $disturl;
push @args, '--linksources' if $localkiwi;
push @args, '--signdummy' if $kiwimode && (!$localkiwi || ! -e "$localkiwi/localkiwi.rpm") && $buildinfo->{'imagetype'} && $buildinfo->{'imagetype'}->[0] eq 'product' && -e "$statedir/build/signdummy";
push @args, '--signdummy' if $kiwimode && $buildinfo->{'imagetype'} && $buildinfo->{'imagetype'}->[0] eq 'product' && -e "$statedir/build/signdummy";
push @args, "$srcdir/$buildinfo->{'file'}";
qsystem(@args);

Expand Down

0 comments on commit 2967211

Please sign in to comment.