Skip to content

Commit

Permalink
[WFLY-20210] Removed '/' from the qs_dir variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jmfinelli committed Dec 20, 2024
1 parent 18f4f17 commit 73759dd
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 73759dd

Please sign in to comment.