remove temporary console.log statement

This commit is contained in:
MrGarlic1 2024-05-08 11:40:53 -04:00 committed by GitHub
parent a5dd01e807
commit 4ec88d2424
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,7 +28,6 @@ handle(IpcEvents.UPDATER_DOWNLOAD, () => {
const url = (() => { const url = (() => {
switch (process.platform) { switch (process.platform) {
case "win32": case "win32":
console.log(assets);
return assets.find(a => { return assets.find(a => {
if (PORTABLE && a.name.endsWith("win.zip")) return true; if (PORTABLE && a.name.endsWith("win.zip")) return true;
if (!PORTABLE && a.name.endsWith(".exe")) return true; if (!PORTABLE && a.name.endsWith(".exe")) return true;