Skip to content

Commit

Permalink
Ensure an error code is emmitted on failure
Browse files Browse the repository at this point in the history
  • Loading branch information
keiranmraine committed Oct 31, 2016
1 parent 5556199 commit 7f92d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/Admin_EnsemblGtf2CacheConverter.pl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
$ccds = parseCCDSFile($opts->{'c'}) if defined $opts->{'c'};
convertGtf($opts,$lookup,$ccds);
} catch {
warn "An error occurred while building reference support files\:\n\t$_"; # not $@
die "An error occurred while building reference support files\:\n\t$_"; # not $@
};

sub convertGtf {
Expand Down

0 comments on commit 7f92d52

Please sign in to comment.