Skip to content

Commit

Permalink
Merge pull request #998 from jmfinelli/WFLY-20210
Browse files Browse the repository at this point in the history
  • Loading branch information
emmartins authored Dec 20, 2024
2 parents 18f4f17 + 73759dd commit 75d24ed
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test_status=0
script_directory="${0%/*}"
script_directory=$(realpath "${script_directory}")
cd "${script_directory}"
qs_dir="${1}"
qs_dir=$(echo "${1}" | sed 's/\///g')
if [ -z "${1}" ]; then
echo "No quickstart directory set"
exit 1
Expand Down Expand Up @@ -187,4 +187,4 @@ end=$SECONDS
duration=$((end - start))
echo "${application} tests run in $(($duration / 60))m$(($duration % 60))s."

exit ${test_status}
exit ${test_status}

0 comments on commit 75d24ed

Please sign in to comment.