From b281d3a7f92c74225e1e024bd4f282f52b440265 Mon Sep 17 00:00:00 2001 From: Camila Belo Date: Thu, 26 Aug 2021 13:08:11 +0200 Subject: [PATCH] apply review suggestions Signed-off-by: Camila Belo --- packages/techdocs-common/src/stages/publish/helpers.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/techdocs-common/src/stages/publish/helpers.ts b/packages/techdocs-common/src/stages/publish/helpers.ts index 26a16893ed..9b935ccbfd 100644 --- a/packages/techdocs-common/src/stages/publish/helpers.ts +++ b/packages/techdocs-common/src/stages/publish/helpers.ts @@ -119,7 +119,6 @@ export const lowerCaseEntityTriplet = (posixPath: string): string => { export const lowerCaseEntityTripletInStoragePath = ( originalPath: string, ): string => { - // normalize path using path.sep (as its support both windows and posix) let posixPath = originalPath; if (originalPath.includes(path.win32.sep)) { posixPath = originalPath.split(path.win32.sep).join(path.posix.sep);