diff --git a/dist/index.js b/dist/index.js index d0a3744..4631aad 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 pwd = yield this.client.pwd(); - const absoluteFolderPath = "/" + pwd + folderPath; + const absoluteFolderPath = pwd + "/" + folderPath; this.logger.all(`removing folder "${absoluteFolderPath}"`); if (this.dryRun === false) { yield utilities_1.retryRequest(this.logger, () => __awaiter(this, void 0, void 0, function* () { return yield this.client.removeDir(absoluteFolderPath); }));