Build: tar on linux needs the --wildcard option, but not supported on OSX

Removing '*.jar'  filter when untarring during the license check
This commit is contained in:
Clinton Gormley 2015-06-23 14:07:10 +02:00
parent 26e782771c
commit a3d1a50865
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ sub check_tar_has_same_shas {
my $temp_dir = File::Temp->newdir;
my $dir_name = $temp_dir->dirname;
system( 'tar', "-xz", "-C" => $dir_name, "-f" => $tar, "*.jar" )
system( 'tar', "-xz", "-C" => $dir_name, "-f" => $tar )
&& die "Error unpacking <$tar> to <" . $dir_name . ">: $!\n";
my @jars;