我正在尝试使用 rsync 和 makefile 将 Mac 上的本地文件发布到我的服务器。运行 make 命令时出现以下错误:
rsync: Failed to exec ssh: No such file or directory (2)
rsync error: error in IPC code (code 14) at /SourceCache/rsync/rsync-42/rsync/pipe.c(86) [sender=2.6.9]
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in IPC code (code 14) at /SourceCache/rsync/rsync-42/rsync/io.c(452) [sender=2.6.9]
make: *** [deploy] Error 14
奇怪的是,如果我直接在 shell 中输入 rsync 命令,它将起作用。
这是makefile中有趣的部分:
USER = admin
SERVER = 92.243.xx.xx
PATH = d_ghost1/www/sub.domain.de/htdocs/
deploy:
/usr/bin/rsync -avz \
--exclude '.git*' \
--exclude '.DS*' \
--exclude '*.log' \
--exclude 'config.ini\*' \
--exclude 'backend/config.ini\*' \
./{assets,backend,frontend,templates,waffle} $(USER)@$(SERVER):$(PATH)
任何人都可以理解这一点吗?谢谢,卢茨