Browse Source

atom: fix extra quotes in install script

Kyle P Davis 10 years ago
parent
commit
e7e712e5b6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      install_atom_plugins.sh

+ 2 - 2
install_atom_plugins.sh

@@ -1,7 +1,7 @@
 #!/bin/bash
 #!/bin/bash
 # An installable list of the Atom IDE plugins that I use.
 # An installable list of the Atom IDE plugins that I use.
 # To get "apm" tool: open Atom and click "Atom->Install Shell Commands"
 # To get "apm" tool: open Atom and click "Atom->Install Shell Commands"
-apm install "$(cat<<-EOF
+apm install $(cat<<-EOF
 Sublime-Style-Column-Selection
 Sublime-Style-Column-Selection
 Tern
 Tern
 Zen
 Zen
@@ -82,4 +82,4 @@ trailing-spaces
 tualo-git-context
 tualo-git-context
 turbo-javascript
 turbo-javascript
 EOF
 EOF
-)"
+)