From c8ac9985bbc71241fb54ed608b2fe098be447092 Mon Sep 17 00:00:00 2001 From: Maarten <50550545+mmvanheusden@users.noreply.github.com> Date: Mon, 11 Dec 2023 21:18:58 +0100 Subject: [PATCH] refactor: remove debug print --- utils.js | 1 - 1 file changed, 1 deletion(-) diff --git a/utils.js b/utils.js index e7b54388..8be7d638 100644 --- a/utils.js +++ b/utils.js @@ -227,7 +227,6 @@ const createCommand = (terminal, os) => { const finalPath = (exportedFile + path.sep + appid).replaceAll(" ", "\\ ") // The final command to run, returned by this function if (os === 0) { - console.log("win") return `start cmd.exe /k dotnet ${platformpath()}${path.sep}depotdownloader${path.sep}DepotDownloader.dll ${userpass} -app ${appid} -depot ${depotid} -manifest ${manifestid} -dir ${finalPath}/ -max-servers 50 -max-downloads 16` } else if (os === 1) { return `osascript -c 'tell application "Terminal" to do script 'dotnet ./depotdownloader/DepotDownloader.dll ${userpass} -app ${appid} -depot ${depotid} -manifest ${manifestid} -dir ${finalPath}/ -max-servers 50 -max-downloads 16'`