Skip to content

Commit

Permalink
Merge pull request #109 from /issues/103-IgnoringUnknownValues
Browse files Browse the repository at this point in the history
  • Loading branch information
tpill90 authored Dec 18, 2023
2 parents 176ceb2 + 9c2145e commit c1b6923
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion BattleNetPrefill/Parsers/BuildConfigParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,12 @@ public static async Task<BuildConfigFile> GetBuildConfigAsync(VersionsEntry vers
case "build-stream":
case "build-has-data":
case "build-target-platform":
case "build-type":
case "build-timestamp":
// Purposefully doing nothing with these. Don't care about these values.
break;
default:
AnsiConsole.WriteLine($"!!!!!!!! Unknown buildconfig variable '{cols[0]}'");
AnsiConsole.Console.LogMarkupVerbose($"!!!!!!!! Unknown buildconfig variable '{cols[0]}'");
buildConfig.UnknownKeyPairs.Add(cols[0], cols[1]);
break;
}
Expand Down
2 changes: 1 addition & 1 deletion BattleNetPrefill/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"profiles": {
"Prefill Blizzard - No Cache - No Download": {
"commandName": "Project",
"commandLineArgs": "prefill --blizzard --no-download --force"
"commandLineArgs": "prefill --all --no-download --force"
},
"Prefill Games used for testing": {
"commandName": "Project",
Expand Down

0 comments on commit c1b6923

Please sign in to comment.