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 18f4f17 + 73759dd commit 75d24edCopy full SHA for 75d24ed
.github/workflows/scripts/kubernetes/core/run-quickstart-test-on-kubernetes.sh
@@ -14,7 +14,7 @@ test_status=0
14
script_directory="${0%/*}"
15
script_directory=$(realpath "${script_directory}")
16
cd "${script_directory}"
17
-qs_dir="${1}"
+qs_dir=$(echo "${1}" | sed 's/\///g')
18
if [ -z "${1}" ]; then
19
echo "No quickstart directory set"
20
exit 1
@@ -187,4 +187,4 @@ end=$SECONDS
187
duration=$((end - start))
188
echo "${application} tests run in $(($duration / 60))m$(($duration % 60))s."
189
190
-exit ${test_status}
+exit ${test_status}
0 commit comments