~ubuntu-branches/debian/jessie/rinse/jessie

« back to all changes in this revision

Viewing changes to bin/rinse

  • Committer: Package Import Robot
  • Author(s): Thomas Lange
  • Date: 2014-07-25 14:35:35 UTC
  • Revision ID: package-import@ubuntu.com-20140725143535-ps0sa6pc7q9b1k0z
Tags: 3.0.4
add missing package for CentOS 7

Show diffs side-by-side

added added

removed removed

Lines of Context:
1117
1117
    my @rpms = glob( "$dir/*.rpm" );
1118
1118
    @rpms = sort {lc($a) cmp lc($b)} @rpms;
1119
1119
 
 
1120
    # the package filesystem should be extracted first
 
1121
    my @fs = grep {  /filesystem/ } @rpms;
 
1122
    @rpms  = grep { !/filesystem/ } @rpms;
 
1123
    unshift @rpms, @fs;
 
1124
 
1120
1125
    # Command to execute after extraction
1121
1126
    my $postcmd = "";
1122
1127