KASM-4038 update var to be inside scope instead of global

This commit is contained in:
ryan.kuba 2023-02-24 07:21:51 -08:00
parent bbfbcc5af8
commit 1b7ebc2a96
No known key found for this signature in database

View File

@ -2256,10 +2256,10 @@ sub DefineConfigToCLIConversion {
switch($value) {
case 'true' {
$valuesStr = '-hw3d ';
my $valuesStr = '-hw3d ';
}
case 'false' {
$valuesStr = ' ';
my $valuesStr = ' ';
}
}