Meta: Use correct WPT log file path when an absolute path is given

This commit is contained in:
Tim Ledbetter 2024-10-28 11:49:21 +00:00 committed by Tim Flynn
parent c544d1fa1f
commit 0a3a75cf35
Notes: github-actions[bot] 2024-10-28 14:23:42 +00:00

View file

@ -87,7 +87,7 @@ set_logging_flags()
[ -n "${2}" ] || usage;
log_type="${1}"
log_name="$(pwd -P)/${2}"
log_name="$(realpath "${2}")"
WPT_ARGS+=( "${log_type}=${log_name}" )
}