Skip to content

Commit

Permalink
put experimental ops at the end of the list
Browse files Browse the repository at this point in the history
  • Loading branch information
cotto committed Feb 17, 2013
1 parent d15fd44 commit f3de8ab
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions config/auto/ops.pm
Expand Up @@ -35,9 +35,11 @@ sub runstep {
sort {
if ( $a =~ /core\.ops/ ) { return -1 }
if ( $b =~ /core\.ops/ ) { return 1 }
if ( $a =~ /experimental\.ops/ ) { return 1 }
if ( $b =~ /experimental\.ops/ ) { return -1 }
return ( $a cmp $b )
}
grep { !/vtable\.ops/ } glob "src/ops/*.ops"
}
grep { !/vtable\.ops/ } glob "src/ops/*.ops"
);

my $ops = join ' ', grep { !/obscure\.ops/ } @ops;
Expand Down

0 comments on commit f3de8ab

Please sign in to comment.