From f9d60067f67b846437130ef14bf94179206ab164 Mon Sep 17 00:00:00 2001 From: Shawn Boyette Date: Fri, 12 Jun 2009 18:30:36 +0000 Subject: [PATCH 1/1] args handling bug --- extract_holdings | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/extract_holdings b/extract_holdings index ee8bb93..742c6e2 100755 --- a/extract_holdings +++ b/extract_holdings @@ -192,7 +192,7 @@ sub initialize { show_help("Nothing to do!") unless ($c->{map} or $c->{sample} or $c->{samplemap} or $c->{samplestr}); show_help("map, holdings, and copyid must be specified together!") - if ($c->{map} and !$c->{holdings} and !$c->{copyid}); + if ($c->{map} and !($c->{holdings} and $c->{copyid})); show_version() if $c->{version}; my @keys = keys %{$c}; -- 1.7.2.5