Meta: Replace realpath usage with cross-platform function in WPT.sh

This commit is contained in:
Tim Ledbetter 2024-10-29 08:46:43 +00:00 committed by Tim Flynn
parent cd0b9c4ec0
commit d79fcceb8a
Notes: github-actions[bot] 2024-10-29 11:31:26 +00:00

View file

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