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.
2 parents 7c69b98 + a9fc61f commit e1d3056Copy full SHA for e1d3056
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