From bc07a4df5bb37c4e1af235728275f0a62dacc897 Mon Sep 17 00:00:00 2001 From: JoshuaMKW <60854312+JoshuaMKW@users.noreply.github.com> Date: Tue, 25 Aug 2020 22:10:37 -0500 Subject: [PATCH] changed directory from bin to data --- installer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer.cs b/installer.cs index c961a8e..0842274 100644 --- a/installer.cs +++ b/installer.cs @@ -90,7 +90,7 @@ public class Installer private void SetProgramFolder(string folderName) { - this.programfolder = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "GeckoLoader", "bin"); + this.programfolder = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "GeckoLoader", "data"); } private void SetProgramFolderToPath() @@ -119,7 +119,7 @@ public class Installer private bool MoveFilesToprogramfolder(string wildcard, bool copy = true, bool overwrite = false) { - DirectoryInfo cwd = new DirectoryInfo(Path.Combine(Directory.GetCurrentDirectory(), "bin")); + DirectoryInfo cwd = new DirectoryInfo(Path.Combine(Directory.GetCurrentDirectory(), "data")); DirectoryInfo programspace = new DirectoryInfo(this.programfolder); if (!programspace.Exists) programspace.Create();