From 487b1303233ff756f161a7211a38e228bb22f7d4 Mon Sep 17 00:00:00 2001 From: nagayaryu Date: Thu, 18 Aug 2022 21:51:43 +0900 Subject: [PATCH] f --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 70a3042..8280d25 100644 --- a/dist/index.js +++ b/dist/index.js @@ -3162,7 +3162,7 @@ class FTPSyncProvider { removeFolder(folderPath) { return __awaiter(this, void 0, void 0, function* () { const absoluteFolderPath = "/" + (this.serverPath.startsWith("./") ? this.serverPath.replace("./", "") : this.serverPath) + folderPath; - const current = await this.client.pwd(); + const current = yield this.client.pwd(); this.logger.all(`removing folder "${absoluteFolderPath} ${current}"`); if (this.dryRun === false) { yield utilities_1.retryRequest(this.logger, () => __awaiter(this, void 0, void 0, function* () { return yield this.client.removeDir(absoluteFolderPath); }));