From 8bfcc80b11ad59538478440fe6e88cc9ee12df77 Mon Sep 17 00:00:00 2001 From: Ali Mihandoost Date: Mon, 29 May 2023 17:00:41 +0330 Subject: [PATCH] fix(util/fs): makeLinkForce throw error --- core/util/src/node/fs.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/core/util/src/node/fs.ts b/core/util/src/node/fs.ts index 28c237a2e..dc8f469e0 100644 --- a/core/util/src/node/fs.ts +++ b/core/util/src/node/fs.ts @@ -235,5 +235,6 @@ export const makeLinkForce = async (src: string, dest: string): Promise => } catch (error) { logger.error('makeLink', 'symlink_failed', error); + throw error; } };