From 5bd827618d6527ee09fab086cbd8f1bce5726c81 Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Fri, 8 Jul 2022 19:53:15 +0200 Subject: [PATCH] bugfix fixed bug where bpm was always creating a single file version --- basaltPackageManager.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basaltPackageManager.lua b/basaltPackageManager.lua index 05b2fb5..470bcaf 100644 --- a/basaltPackageManager.lua +++ b/basaltPackageManager.lua @@ -1230,7 +1230,7 @@ local function installProject() addToInstallLog("Installed: "..projectDir.."/"..v) end addToInstallLog("Finished downloading!") - if(sOrM:getValue().args)then + if(sOrM:getValue().args[1])then if(minProject:getValue())then addToInstallLog("Packaging and minifying project to a single file...") else @@ -1279,4 +1279,4 @@ local function getProjectFileTree() end main:addThread("fileTreeThread"):start(getProjectFileTree) -basalt.autoUpdate() \ No newline at end of file +basalt.autoUpdate()