On Sat, Apr 6, 2013 at 11:13 AM, David Boyer <[email protected]> wrote: > Thanks for the tips. > > I got into bash and ran through the steps manually. But there's still > something really odd going on: > > ~/test $ export GIT_SSH="/app/bin/git_ssh.sh" > ~/test $ git push [email protected]:misterdai/test.git master:gh-pages --force > error: cannot run /app/bin/git_ssh.sh: No such file or directory > fatal: unable to fork > ~/test $ ls /app/bin > git_ssh.sh node
How about "ls -l"? Did you set executable bits (chmod a+x) *and* put a shebang/interpreter directive in the first line of the file? (e.g. head /app/bin/git_ssh.sh's first line is "#!/bin/sh") Finally, what happens if you run "sh /app/bin/git_ssh.sh" (or if you use bashisms: "bash /app/bin/git_ssh.sh")? -- -- You received this message because you are subscribed to the Google Groups "Heroku" group. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/heroku?hl=en_US?hl=en --- You received this message because you are subscribed to the Google Groups "Heroku Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
