Fix Atom Syntax installation instructions

This commit is contained in:
Matt Swensen 2020-03-31 21:08:40 -06:00
parent 477bcbc0eb
commit 77d667eac8
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[`renderInstructions function should provide installation instructions 1`
"
Use the \`apm link\` command to install the generated theme packages to Atom:
apm link themer-dark-syntax
apm link themer-light-syntax
apm link 'themer-dark-syntax'
apm link 'themer-light-syntax'
Then open/reload Atom and select the desired theme in the list of available syntax themes.
"

@ -398,7 +398,7 @@ const renderInstructions = paths => {
return `
Use the \`apm link\` command to install the generated theme ${packages.size > 1 ? 'packages' : 'package'} to Atom:
${[...packages].map(pkg => ` apm link ${pkg}`).join('\n')}
${[...packages].map(pkg => ` apm link '${pkg}'`).join('\n')}
Then open/reload Atom and select the desired theme in the list of available syntax themes.
`;