We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e96da1d commit a9fc61fCopy full SHA for a9fc61f
container-images/tcib/base/os/horizontest/run_horizontest.sh
@@ -127,10 +127,18 @@ function delete_custom_resources {
127
}
128
129
pushd ${HORIZONTEST_DIR}
130
-git clone ${REPO_URL} ${HORIZONTEST_DIR}/horizon
+if [[ ${REPO_URL} == *redhat.com* ]]; then
131
+ git -c http.sslVerify=false clone ${REPO_URL} ${HORIZONTEST_DIR}/horizon
132
+else
133
+ git clone ${REPO_URL} ${HORIZONTEST_DIR}/horizon
134
+fi
135
chown -R horizontest:horizontest horizon
136
pushd horizon
-git pull --rebase
137
138
+ git -c http.sslVerify=false pull --rebase
139
140
+ git pull --rebase
141
142
git checkout ${HORIZON_REPO_BRANCH}
143
144
clean_leftover_images
0 commit comments