Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

Commit

Permalink
Fix #29
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikx committed Jun 27, 2021
1 parent 28669bb commit f492078
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Metro Skin Installer/Metro Skin Installer/InstallActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ public static System.Uri GetLatestMetro()

public static void InstallSkin(string steamDir)
{
if (!Directory.Exists(steamDir))
{
Directory.CreateDirectory(steamDir);
}

bool customStylesExists = false;
bool extrasFileExists = false;

Expand Down

0 comments on commit f492078

Please sign in to comment.