Skip to content

Commit

Permalink
[backend] fix call of build script with emulator mode
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschroeter committed Feb 12, 2013
1 parent ae83147 commit be3253f
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 @@ -2082,9 +2082,9 @@ sub dobuild {
push @args, '--statistics';
} elsif ($vm =~ /emulator/) {
push @args, '--root', "$buildroot/.mount";
push @args, '--vm-type', $vm;
push @args, '--vm-type', 'emulator';
push @args, '--statistics';
push @args, '----emulator-script', $emulator_script if $emulator_script;
push @args, '--emulator-script', $emulator_script if $emulator_script;
} elsif ($vm =~ /lxc/) {
push @args, '--root', $buildroot;
push @args, '--vm-type', $vm;
Expand Down

0 comments on commit be3253f

Please sign in to comment.