Skip to content

Commit

Permalink
Merge pull request #42 from mataqvazadeh/fix-runner-options
Browse files Browse the repository at this point in the history
fix updaing locale option
  • Loading branch information
Steveiwonder authored Feb 12, 2024
2 parents 96b690c + 34f9e55 commit e3c6aa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DataMasker.Runner/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ private static void RuntimeArgumentHandle()
config.DataSource.DryRun = cliOptions.DryRun.Value;
}

if (string.IsNullOrEmpty(cliOptions.Locale))
if (!string.IsNullOrEmpty(cliOptions.Locale))
{
config.DataGeneration.Locale = cliOptions.Locale;
}
Expand Down

0 comments on commit e3c6aa7

Please sign in to comment.