From b6d2375af9136c4b868a60248315d57a8bad122e Mon Sep 17 00:00:00 2001 From: Sean Date: Fri, 18 Oct 2024 10:24:58 -0400 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 84db9cf..19cc2f9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,7 +64,7 @@ jobs: find node_modules/.bin -type l -print0 | while IFS= read -r -d '' link; do target=$(readlink "$link") rm "$link" - cp "$target" "$link" + cp "$(dirname "$link")/$target" "$link" done - name: Replace symlinks with actual files (Windows)