Quote outputted files in Alfred instructions

This commit is contained in:
Matt Swensen 2020-03-31 21:13:13 -06:00
parent 5340c08a0d
commit b477ba6050
No known key found for this signature in database
GPG Key ID: 3F9E482BFC526F35
2 changed files with 3 additions and 3 deletions

@ -4,8 +4,8 @@ exports[`themer Alfred.app theme template should provide installation instructio
"
Simply open the files to import them into Alfred. Either double-click them in Finder or use the terminal:
open themer-alfred-dark.alfredappearance
open themer-alfred-light.alfredappearance
open 'themer-alfred-dark.alfredappearance'
open 'themer-alfred-light.alfredappearance'
"
`;

@ -99,7 +99,7 @@ const render = (colors, options) => {
const renderInstructions = (paths) => `
Simply open the files to import them into Alfred. Either double-click them in Finder or use the terminal:
${paths.map(path => ` open ${path}`).join('\n')}
${paths.map(path => ` open '${path}'`).join('\n')}
`;
module.exports = {