crontab 计划任务运行git pull
我写了个脚本,加入到crontab中, 让它定时运行git pull 命令, 发现git pull错误。
#cat my.sh
# !/bin/bash
echo "HAHA begin" >> /tmp/log
git pull origin master >> /tmp/log || {echo "pull error" && exit 0}
echo "Done"
这个脚本我在终端sh my.sh 是可以的,就是放在crontab中就出错了.
Why, Why, Why.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
绝对路径试试。
别sh auto-build.sh
./auto-build.sh试试看可以么?
已经有权限了的
#cat /etc/crontab
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
54 * * * * my cd / && /home/my/auto-build.sh &
我在my用户下sh auto-build.sh是可以的。
还有可能你没有设备PATH吧。git不在你的PATH内?
chmod +x