Skip to content

Commit 2168d2b

Browse files
cyanogilvieclaude
andcommitted
Fix Windows packaging: DLL name includes tcl9 prefix
The Tcl 9 wrap produces libtcl9rl_json.dll, not librl_json.dll. Use a glob to match either naming convention. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d5f8109 commit 2168d2b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
run: |
119119
pkg_dir="rl_json-${{ steps.version.outputs.version }}"
120120
mkdir -p "/tmp/win/${pkg_dir}"
121-
cp buildwin/teabase/librl_json.dll "/tmp/win/${pkg_dir}/"
121+
cp buildwin/teabase/*rl_json.dll "/tmp/win/${pkg_dir}/"
122122
cp buildwin/teabase/pkgIndex.tcl "/tmp/win/${pkg_dir}/"
123123
if [ -f buildwin/doc/rl_json.html ]; then
124124
cp buildwin/doc/rl_json.html "/tmp/win/${pkg_dir}/"

0 commit comments

Comments
 (0)