Skip to content

Conversation

@JasonXuDeveloper
Copy link
Owner

Summary

Fixes a bug in PR #568 where the sed command breaks because URLs contain / which is the default sed delimiter.

Before (broken):

sed "s/(#566)/([#566](https://github.com/.../pull/566))/"
#                              ^ these slashes break sed

After (fixed):

sed "s|(#566)|([#566](https://github.com/.../pull/566))|"
#    ^ using pipe as delimiter instead

Test plan

  • Merge this PR
  • Run release workflow with core_version=1.0.7 and util_version=1.0.1
  • Verify PR hyperlinks are properly formatted in changelog

🤖 Generated with Claude Code

The sed command was breaking because URLs contain '/' which is the
default sed delimiter. Changed to use '|' as delimiter instead.

Signed-off-by: JasonXuDeveloper - 傑 <jason@xgamedev.net>
@JasonXuDeveloper JasonXuDeveloper merged commit 8a1c9ed into master Jan 25, 2026
7 checks passed
@JasonXuDeveloper JasonXuDeveloper deleted the fix/release-sed-delimiter branch January 25, 2026 09:44
@github-actions
Copy link

Unity Test Results

EditMode: All tests passed
PlayMode: All tests passed

Unity Version: 2022.3.55f1
Project Path: UnityProject

✅ All tests passed! The PR is ready for review.

View workflow run

Click here to view the full workflow run

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants