We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 75288cc + 2a9ccff commit b79faa9Copy full SHA for b79faa9
git-difftool--helper.sh
@@ -40,7 +40,7 @@ launch_merge_tool () {
40
# the user with the real $MERGED name before launching $merge_tool.
41
if should_prompt
42
then
43
- printf "\nViewing: '$MERGED'\n"
+ printf "\nViewing: '%s'\n" "$MERGED"
44
if use_ext_cmd
45
46
printf "Launch '%s' [Y/n]: " \
git-mergetool.sh
@@ -440,7 +440,7 @@ then
440
fi
441
442
printf "Merging:\n"
443
-printf "$files\n"
+printf "%s\n" "$files"
444
445
IFS='
446
'
0 commit comments