命令在终端上有效,但在 cron 中无效

命令在终端上有效,但在 cron 中无效

我有以下命令,可以从任何文件夹运行,它将使用 grunt 任务运行器工具启动我的(Angularjs)web 应用程序 -

cd /root/dev/myapp && grunt serve

但是当我把它放入 cron 中时它不起作用 -

*/1 * * * * cd /root/dev/myapp && grunt serve

关于它为什么不起作用有什么想法吗?

答案1

我必须设置路径来咕噜 -

*/1 * * * * cd /root/dev/myapp && /usr/bin/local/grunt serve

相关内容