Skip to content

Commit

Permalink
Merging postreleasefix/88 to release/88
Browse files Browse the repository at this point in the history
* postreleasefix/88:
  fix to unzip command
  • Loading branch information
William McLaren committed Apr 6, 2017
2 parents ec557cf + 0d11bfc commit 5416343
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion INSTALL.pl
Expand Up @@ -1647,7 +1647,7 @@ sub unpack_arch {
}
else {
if($arch_file =~ /.zip$/ && $CAN_USE_UNZIP) {
`unzip $arch_file -d $dir -qq` and die("ERROR: Failed to unpack file $arch_file\n");
`unzip -qq $arch_file -d $dir` and die("ERROR: Failed to unpack file $arch_file\n");
}
elsif($arch_file =~ /(\.tar\.|\.t)gz$/ && $CAN_USE_TAR) {
`tar -C $dir -zxf $arch_file` and die("ERROR: Failed to unpack file $arch_file\n");
Expand Down
2 changes: 1 addition & 1 deletion modules/Bio/EnsEMBL/VEP/Constants.pm
Expand Up @@ -20,7 +20,7 @@ use warnings;
use base qw(Exporter);

our $VEP_VERSION = 88;
our $VEP_SUB_VERSION = 4;
our $VEP_SUB_VERSION = 5;

our @EXPORT_OK = qw(
@FLAG_FIELDS
Expand Down

0 comments on commit 5416343

Please sign in to comment.