瀏覽代碼

atom: fix extra quotes in install script

Kyle P Davis 11 年之前
父節點
當前提交
e7e712e5b6
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      install_atom_plugins.sh

+ 2 - 2
install_atom_plugins.sh

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