From b7016ba0cac24fab0a8bd872633c42a5890af6e6 Mon Sep 17 00:00:00 2001 From: murdle Date: Fri, 2 May 2025 07:05:16 -0700 Subject: [PATCH] fix a bug in bootstrapper deployment --- RobloxLegacy/Installer.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/RobloxLegacy/Installer.cs b/RobloxLegacy/Installer.cs index ef66a21..d10dbae 100644 --- a/RobloxLegacy/Installer.cs +++ b/RobloxLegacy/Installer.cs @@ -35,6 +35,7 @@ public class Installer var installPath = Path.Combine(InstallPath, "RobloxLegacy.exe"); if(bootstrapperPath == installPath) // already installed return; + Directory.CreateDirectory(InstallPath); File.Copy(bootstrapperPath, installPath, true); SetShortcuts(installPath); }