This commit is contained in:
nagayaryu 2022-08-18 21:57:17 +09:00
parent 487b130323
commit 0fbaa12f37

3
dist/index.js vendored
View File

@ -3161,7 +3161,8 @@ class FTPSyncProvider {
}
removeFolder(folderPath) {
return __awaiter(this, void 0, void 0, function* () {
const absoluteFolderPath = "/" + (this.serverPath.startsWith("./") ? this.serverPath.replace("./", "") : this.serverPath) + folderPath;
// const absoluteFolderPath = "/" + (this.serverPath.startsWith("./") ? this.serverPath.replace("./", "") : this.serverPath) + folderPath;
const absoluteFolderPath = "/" + folderPath;
const current = yield this.client.pwd();
this.logger.all(`removing folder "${absoluteFolderPath} ${current}"`);
if (this.dryRun === false) {