use Config::Simple;
use Getopt::Long;
-my ($help, $config_file, $component, $srcpath, $host);
+my ($help, $config_file, $component, $srcpath);
GetOptions(
'help' => \$help, # show help message and exit
'config=s' => \$config_file, # INI file for path mappings
'component=s' => \$component, # The component to grab the source paths for
- 'srcpath=s' => \$srcpath, # The source path to grap the destination path for
+ 'srcpath=s' => \$srcpath # The source path to grap the destination path for
);
if ($help) {