Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix --exclude option in interchange startup script.
Getopt::Long made an incompatible change as of version 2.33 hash values become
mandatory when they are specified with "=", this makes our documented syntax
for --exclude invalid.  To make it work again the hash values must be made
optional by changing the "=" to ":".
  • Loading branch information
pajamian committed Aug 15, 2015
1 parent 5e314b0 commit 1fd3682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/interchange.PL
Expand Up @@ -712,7 +712,7 @@ sub parse_options {
configfile|config|c|f=s
dir|vendroot|d=s
email=s
exclude|e=s
exclude|e:s
flag=i
help|h
globalconfig
Expand Down

0 comments on commit 1fd3682

Please sign in to comment.