Skip to content

Commit 27c22f2

Browse files
committed
Surround docx path with quotes
Paths and filenames containing spaces would not be diffed without the quotes
1 parent 930625e commit 27c22f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/08-customizing-git/sections/attributes.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Create a file that's somewhere in your path called `docx2txt`, and add these con
7171
[source,console]
7272
----
7373
#!/bin/bash
74-
docx2txt.pl $1 -
74+
docx2txt.pl "$1" -
7575
----
7676

7777
Don't forget to `chmod a+x` that file.

0 commit comments

Comments
 (0)