diff --git a/cli/packages/themer-atom-ui/lib/__snapshots__/index.spec.js.snap b/cli/packages/themer-atom-ui/lib/__snapshots__/index.spec.js.snap index bafe7f5..48c47c0 100644 --- a/cli/packages/themer-atom-ui/lib/__snapshots__/index.spec.js.snap +++ b/cli/packages/themer-atom-ui/lib/__snapshots__/index.spec.js.snap @@ -1860,8 +1860,8 @@ exports[`renderInstructions should provide installation instructions 1`] = ` " Use the \`apm link\` command to install the generated theme packages to Atom: - apm link themer-dark-ui - apm link themer-light-ui + apm link 'themer-dark-ui' + apm link 'themer-light-ui' Then open/reload Atom and select the desired theme in the list of available UI themes. " diff --git a/cli/packages/themer-atom-ui/lib/index.js b/cli/packages/themer-atom-ui/lib/index.js index 5cec26a..2a291a4 100644 --- a/cli/packages/themer-atom-ui/lib/index.js +++ b/cli/packages/themer-atom-ui/lib/index.js @@ -107,7 +107,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 UI themes. `;