forked from len0rd/rockbox
tools: Release scripts should only create artefacts for _stable_ targets
...Instead of including unstable targets too. Those have to make do with dailies. Change-Id: Ie7d75338dab7b395e1f5980da54bc03f4b9f0184
This commit is contained in:
parent
f884f92234
commit
8b54bec33e
2 changed files with 2 additions and 2 deletions
|
@ -121,7 +121,7 @@ sub buildfonts {
|
|||
print "cd tools && make\n" if($verbose);
|
||||
`(cd tools && make ) >/dev/null`;
|
||||
|
||||
for my $b (&usablebuilds) {
|
||||
for my $b (&stablebuilds) {
|
||||
my $configname = $builds{$b}{configname} ? $builds{$b}{configname} : $b;
|
||||
runone($b, $configname, $builds{$b}{ram});
|
||||
}
|
||||
|
|
|
@ -80,7 +80,7 @@ if (!defined($ENV{'POOL'})) {
|
|||
|
||||
`mkdir -p $outdir`;
|
||||
|
||||
for my $b (&usablebuilds) {
|
||||
for my $b (&stablebuilds) {
|
||||
next if ($builds{$b}{voice}); # no variants
|
||||
|
||||
for my $v (&allvoices) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue