答案 0 :(得分:1)
出现每当gem有/ bin / bash硬编码
时 set :job_template, "/bin/bash -l -c ':job'"
并非所有操作系统都将bash放在同一个地方。
您似乎正在使用bash不在/ bin中的操作系统(可能在/ usr / bin或/ usr / local / bin中)
您需要更新job_template以匹配bash的位置,或者您可以
set :job_template, "bash -l -c ':job'"
让shell为您找到正确版本的bash。