fix(portable): CONFLICT on real-directory dst in link_or_copy (CC-104u)#100
Merged
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…CC-104u - test-install.sh pm-real-dir-*: update assertion from "is not a symlink" to "is a real directory" to match new link_or_copy guard message - BACKLOG.md: add CC-104u body section (✅ 2026-05-19, See: pr:#100) required by validator Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
link_or_copy()inscripts/lib/portable.shdid not explicitly guard against a real (non-symlink) directorydst; on some platforms (observed on Git Bash / Windows),[[ -e "$dst" ]]may not intercept a real directory beforeln -s "$src" "$dst"runs, causinglnto create a link inside the directory (dst/basename(src)) instead of atdstitself[[ -d "$dst" && ! -L "$dst" ]]precheck immediately after the symlink branch, returning rc=2 (CONFLICT) with a clear diagnostic messagecase_link_or_copy_dst_is_real_dirregression test covering: rc=2, "real directory" in stderr, directory not replaced, no accidentaldst/src.txtcreationTest plan
bash scripts/test-portable.sh— 19 passed, 0 failed (including new case)🤖 Generated with Claude Code