From 992b3c5d9490c356d6e7f071e1c000330effcabf Mon Sep 17 00:00:00 2001 From: jingfu wang Date: Mon, 8 Jun 2020 13:14:05 -0400 Subject: [PATCH] docs: update comment of delete files Signed-off-by: jingfu wang --- .../file-watcher/server/src/controllers/projectsController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pfe/file-watcher/server/src/controllers/projectsController.ts b/src/pfe/file-watcher/server/src/controllers/projectsController.ts index 412c9dc3a..dcc8ae17f 100644 --- a/src/pfe/file-watcher/server/src/controllers/projectsController.ts +++ b/src/pfe/file-watcher/server/src/controllers/projectsController.ts @@ -1001,7 +1001,7 @@ export function deleteFolder(dir: string): Promise { if (err) { return reject(err); } - // Delete log folder and log files inside log folder + // Delete all files in the directory and the directory const option: rimraf.Options = { maxBusyTries: 15, };