Skip to content

Commit

Permalink
fix(util/fs): makeLinkForce throw error
Browse files Browse the repository at this point in the history
  • Loading branch information
AliMD committed May 29, 2023
1 parent a8ee7a5 commit 8bfcc80
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/util/src/node/fs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,5 +235,6 @@ export const makeLinkForce = async (src: string, dest: string): Promise<void> =>
}
catch (error) {
logger.error('makeLink', 'symlink_failed', error);
throw error;
}
};

0 comments on commit 8bfcc80

Please sign in to comment.