Hubot makefile测试任务不工作

Hubot makefile测试任务不工作,makefile,coffeescript,hubot,Makefile,Coffeescript,Hubot,我在运行make test时得到以下结果: coffee test/my_script_test.coffee xargs: coffee: No such file or directory make: *** [test] Error 127 我的makefile与此保持不变 我可以完美地运行hubot,所以我不确定xargs为什么不喜欢咖啡 谢谢您是否安装了CoffeeScript?您的路径中是否有coffee命令?如果您从shell中选择了哪种咖啡,会发生什么?是,否,否。我应该将咖啡

我在运行make test时得到以下结果:

coffee test/my_script_test.coffee
xargs: coffee: No such file or directory
make: *** [test] Error 127
我的makefile与此保持不变

我可以完美地运行hubot,所以我不确定xargs为什么不喜欢咖啡


谢谢

您是否安装了CoffeeScript?您的
路径中是否有
coffee
命令?如果您从shell中选择了
哪种咖啡
,会发生什么?是,否,否。我应该将咖啡添加到Makefile中的路径中吗?要么将
咖啡
的目录添加到您的
路径
中,要么编辑
Makefile
以包含
咖啡
的完整路径。我添加了完整路径,现在就可以工作了,感谢makefile工作,这让我发现有一个hubot/node\u modules/hubot文件夹,其中包含一个已经工作的makefile。这就是我应该放脚本和测试的地方吗?我想我真正的问题是hubot维基不是很好,我找不到一个好的演练来涵盖那些对初学者来说不明显的愚蠢的东西,比如你把文件放在哪里。