From 47b236b47af6bf31f726f029beb0b5721a15e91c Mon Sep 17 00:00:00 2001 From: Taekwon Yoo Date: Sun, 12 Jul 2026 09:30:02 +0900 Subject: [PATCH 1/2] test: support linked worktree git metadata --- scripts/test-check-micro-eval-pilots.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/test-check-micro-eval-pilots.py b/scripts/test-check-micro-eval-pilots.py index ad76164..83a3115 100644 --- a/scripts/test-check-micro-eval-pilots.py +++ b/scripts/test-check-micro-eval-pilots.py @@ -150,7 +150,11 @@ def recorded_commit_blob_mismatch(result: dict[str, Any], checkout: Path) -> Non def no_git_archive(_result: dict[str, Any], checkout: Path) -> None: - shutil.rmtree(checkout / ".git") + git_metadata = checkout / ".git" + if git_metadata.is_dir(): + shutil.rmtree(git_metadata) + else: + git_metadata.unlink() def source_path_traversal(result: dict[str, Any], _checkout: Path) -> None: From 41ba08df402575e89a07213002c2ea778e6ca52c Mon Sep 17 00:00:00 2001 From: Taekwon Yoo Date: Sun, 12 Jul 2026 09:37:50 +0900 Subject: [PATCH 2/2] chore: prepare TigerKit patch release 16.5.17 --- .claude-plugin/plugin.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 5af0eaa..7910100 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "tk", "description": "TigerKit `/tk:*` command plugin입니다.", - "version": "16.5.16", + "version": "16.5.17", "author": { "name": "MTGVim" },