From 5c3b7acd54a434935f2c7e03a5f5951e4e9c4c1f Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Wed, 4 Feb 2026 09:14:32 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- packages/server/src/utils/builders/drop.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/packages/server/src/utils/builders/drop.ts b/packages/server/src/utils/builders/drop.ts index 2dd578774..e04f2d253 100644 --- a/packages/server/src/utils/builders/drop.ts +++ b/packages/server/src/utils/builders/drop.ts @@ -71,10 +71,7 @@ export const unzipDrop = async (zipFile: File, application: Application) => { if (sftp === null) throw new Error("No SFTP connection available"); try { const dirPath = path.dirname(fullPath); - await execAsyncRemote( - targetServerId, - `mkdir -p "${dirPath}"`, - ); + await execAsyncRemote(targetServerId, `mkdir -p "${dirPath}"`); await uploadFileToServer(sftp, entry.getData(), fullPath); } catch (err) { console.error(`Error uploading file ${fullPath}:`, err);