Skip to content

Commit

Permalink
fix: Compilation error in Studio installer
Browse files Browse the repository at this point in the history
  • Loading branch information
psyGamer committed Oct 1, 2024
1 parent a664179 commit 89be187
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ private static void Load() {
if (Directory.Exists(Path.Combine(StudioDirectory, "TAS Files"))) {
foreach (string path in Directory.GetFiles(Path.Combine(StudioDirectory, "TAS Files"), "*", new EnumerationOptions { RecurseSubdirectories = true })) {
// Don't copy directories themselves
if (Directory.Exists(file)) {
if (Directory.Exists(path)) {
continue;
}

Expand Down

0 comments on commit 89be187

Please sign in to comment.