diff options
author | David Tardon <dtardon@redhat.com> | 2016-06-03 15:31:54 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2016-06-04 08:09:56 +0200 |
commit | c3393443b4b08b0999d10150125fa4737d5848f4 (patch) | |
tree | a0310b0a7ed759e38c90f4f09a04181ce53da334 /solenv | |
parent | b2abb97a6545096d6952430f7ff37cadb1a23707 (diff) |
drop unused option
Change-Id: I317160ca6ffc0ff1c7db443f844f02f91fad5929
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/packimages.pl | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/solenv/bin/packimages.pl b/solenv/bin/packimages.pl index b05b83fd25d6..e2f7af674bd5 100644 --- a/solenv/bin/packimages.pl +++ b/solenv/bin/packimages.pl @@ -107,7 +107,6 @@ sub parse_options my $opt_help; my $p = Getopt::Long::Parser->new(); my @custom_path_list; - my $custom_path_extended; my $success =$p->getoptions( '-h' => \$opt_help, '-o=s' => \$out_file, @@ -115,12 +114,10 @@ sub parse_options '-s=s' => \$sort_file, '-m=s' => \$module_path, '-c=s' => \@custom_path_list, - '-e=s' => \$custom_path_extended, '-l=s' => \@imagelist_path, '-v' => \$verbose, '-vv' => \$extra_verbose ); - push @custom_path_list, $custom_path_extended if ($custom_path_extended); if ( $opt_help || !$success || !$out_file || !$global_path || !$module_path || !@custom_path_list || !@imagelist_path ) { |