Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit f800885

Browse files
committed
fixed paths issue
1 parent 4bcab95 commit f800885

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Utils/Paths.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ namespace SPCode.Utils
55
{
66
public class Paths
77
{
8-
public Paths() { }
9-
8+
#if BETA
9+
private static readonly string SPCodeAppDataPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\spcodebeta";
10+
#else
1011
private static readonly string SPCodeAppDataPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\spcode";
12+
#endif
1113
private static bool LocalInstallation;
1214

1315
public static bool IsLocalInstallation()

0 commit comments

Comments
 (0)