Fix Atom UI installation instructions

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

@ -1860,8 +1860,8 @@ exports[`renderInstructions should provide installation instructions 1`] = `
" "
Use the \`apm link\` command to install the generated theme packages to Atom: Use the \`apm link\` command to install the generated theme packages to Atom:
apm link themer-dark-ui apm link 'themer-dark-ui'
apm link themer-light-ui apm link 'themer-light-ui'
Then open/reload Atom and select the desired theme in the list of available UI themes. Then open/reload Atom and select the desired theme in the list of available UI themes.
" "

@ -107,7 +107,7 @@ const renderInstructions = paths => {
return ` return `
Use the \`apm link\` command to install the generated theme ${packages.size > 1 ? 'packages' : 'package'} to Atom: 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 UI themes. Then open/reload Atom and select the desired theme in the list of available UI themes.
`; `;