We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 393b7c3 + 2a9ccff commit ba56d70Copy full SHA for ba56d70
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
@@ -403,7 +403,7 @@ then
403
fi
404
405
printf "Merging:\n"
406
-printf "$files\n"
+printf "%s\n" "$files"
407
408
IFS='
409
'
0 commit comments