Skip to content

Commit

Permalink
Make sure the config dir exists
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Aug 12, 2022
1 parent 21271d6 commit 960eda0
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ private bool TrySetRemoteBuildMap()
{
Log.Debug("Getting remote build map");
var json = Net.DownloadText(BuildMapUri);
new FileInfo(cachedBuildMapPath).Directory.Create();
File.WriteAllText(cachedBuildMapPath, json);
return TrySetBuildMap(json);
}
Expand Down

0 comments on commit 960eda0

Please sign in to comment.