GitInput: deal with undefined deepClone
This commit is contained in:
@ -34,7 +34,7 @@ sub _parseValue {
|
||||
my $start_options = 3;
|
||||
# if deepClone has "=" then is considered an option
|
||||
# and not the enabling of deepClone
|
||||
if (index($deepClone, "=") != -1) {
|
||||
if (defined($deepClone) && index($deepClone, "=") != -1) {
|
||||
undef $deepClone;
|
||||
$start_options = 2;
|
||||
}
|
||||
|
Reference in New Issue
Block a user