From 77d667eac85eda84d9a4b858fbf5b3c52b82d512 Mon Sep 17 00:00:00 2001 From: Matt Swensen Date: Tue, 31 Mar 2020 21:08:40 -0600 Subject: [PATCH] Fix Atom Syntax installation instructions --- .../themer-atom-syntax/lib/__snapshots__/index.spec.js.snap | 4 ++-- cli/packages/themer-atom-syntax/lib/index.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/packages/themer-atom-syntax/lib/__snapshots__/index.spec.js.snap b/cli/packages/themer-atom-syntax/lib/__snapshots__/index.spec.js.snap index 9b5f364..504b05a 100644 --- a/cli/packages/themer-atom-syntax/lib/__snapshots__/index.spec.js.snap +++ b/cli/packages/themer-atom-syntax/lib/__snapshots__/index.spec.js.snap @@ -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. " diff --git a/cli/packages/themer-atom-syntax/lib/index.js b/cli/packages/themer-atom-syntax/lib/index.js index 2355beb..a5f83f6 100644 --- a/cli/packages/themer-atom-syntax/lib/index.js +++ b/cli/packages/themer-atom-syntax/lib/index.js @@ -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. `;