Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It Appears the whenever gem has /bin/bash hardcoded
set :job_template, "/bin/bash -l -c ':job'"Not all OS put bash in the same place.
It would appear that you are using an operating system where bash is not in /bin (probably in /usr/bin or /usr/local/bin)
You will need to update the job_template to match the location of bash or you could do
set :job_template, "bash -l -c ':job'"To let the shell locate the correct version of bash for you.