From 2c453a34ee6baa4e37e7e6b1045334555ea0d13f Mon Sep 17 00:00:00 2001 From: mikiher Date: Sat, 27 Jul 2024 23:09:46 +0300 Subject: [PATCH] Remove redundant console.log() message --- server/managers/BinaryManager.js | 1 - 1 file changed, 1 deletion(-) diff --git a/server/managers/BinaryManager.js b/server/managers/BinaryManager.js index e937beb1..63c87e7b 100644 --- a/server/managers/BinaryManager.js +++ b/server/managers/BinaryManager.js @@ -82,7 +82,6 @@ class GithubAssetDownloader { // Set executable permission for Linux if (process.platform !== 'win32') { await fs.chmod(outputPath, 0o755) - console.log(`Set executable permissions for ${outputPath}`) } }