in lib/build.rb [164:172]
def clone_cmd
cmd = []
cmd << "cd #{config.builds_dir}"
cmd << "git clone #{@repo_url} project-#{@project_id}"
cmd << "cd project-#{@project_id}"
cmd << "git checkout #{@ref}"
cmd.join(" && ")
end