如何在npm脚本中执行以下bash语句?

时间:2015-11-01 03:13:19

标签: node.js bash npm

我知道有很多方法可以做到这一点,但我使用'npm脚本'作为我的构建工具。我坚持使用这个简单的echo语句,将source我的.bash_plugin放入.bash_profile:

  "scripts": {
    "info": "echo 'npm as a build tool'",
    "installBashPlugin": "echo 'source ~/.bash_plugins/.my_plugin' >> '~/.bash_profile'"

我在这里做错了什么?我收到以下错误:

npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the buildtool@1.0.0 bash script 'echo 'source ~/.bash_plugins/.my_plugin' >> '~/.bash_profile''.

1 个答案:

答案 0 :(得分:0)

哦,我没有这个。

.bash_profile

目标文件周围的单引号:sum()是错误的地方。感谢。