Skip to content

Commit 8dc0ac1

Browse files
Phlogistiqueclaude
andauthored
Fix backtick quoting in conflict resolution instructions (#26)
The double quotes caused backticks around `git mergetool` to be interpreted as command substitution rather than displayed literally in the output. Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent f08a79f commit 8dc0ac1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

update-pr-stack.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ update_direct_target() {
9999
for conflict in "${CONFLICTS[@]}"; do
100100
echo "git merge $conflict"
101101
echo "# ..."
102-
echo "# fix conflicts, for instance with `git mergetool`"
102+
echo '# fix conflicts, for instance with `git mergetool`'
103103
echo "# ..."
104104
echo "git commit"
105105
done

0 commit comments

Comments
 (0)