From 7bfdf3edf7e6b88a5d48fce9e015b2d4e95187af Mon Sep 17 00:00:00 2001 From: Spencer Krum Date: Wed, 19 Aug 2015 16:41:36 -0700 Subject: [PATCH] Fix target path for regular git clone during tests Use same target directory for zuul-cloner and the regular git command. Change-Id: Iea3f6041800c832f02d304c998d13897a1c51383 Co-Authored-By: Fabien Boucher --- spec/spec_helper_acceptance.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb index a3a42aa..7a5efa1 100644 --- a/spec/spec_helper_acceptance.rb +++ b/spec/spec_helper_acceptance.rb @@ -42,7 +42,7 @@ RSpec.configure do |c| zuul_clone_cmd += "git://git.openstack.org #{repo}" on host, zuul_clone_cmd else - on host, "git clone https://git.openstack.org/#{repo}" + on host, "git clone https://git.openstack.org/#{repo} #{repo}" end on host, "ZUUL_REF=#{zuul_ref} ZUUL_BRANCH=#{zuul_branch} ZUUL_URL=#{zuul_url} bash #{repo}/tools/install_modules_acceptance.sh"