From 5d0d95150161ba68ea0f84aee557b2b9ee617d1d Mon Sep 17 00:00:00 2001 From: Ryan Greenup Date: Fri, 17 Jul 2020 03:09:23 +1000 Subject: [PATCH] Wrap file paths in single quotes --- bin/tags/yaml-tags-to-TMSU.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tags/yaml-tags-to-TMSU.js b/bin/tags/yaml-tags-to-TMSU.js index cbe9e84..d685694 100644 --- a/bin/tags/yaml-tags-to-TMSU.js +++ b/bin/tags/yaml-tags-to-TMSU.js @@ -84,7 +84,7 @@ for (let j = 0; j < noteFilePathList.length; j++) { process.stdout.write("tmsu tag") process.stdout.write(" ") - process.stdout.write(filePath) + process.stdout.write(" '" + filePath + "'\n") process.stdout.write(" ") process.stdout.write(" '" + thetags[i] + "'\n") }