Skip to content
Snippets Groups Projects
Commit f0c67a79 authored by Lucas Mateus Castro (alqotel)'s avatar Lucas Mateus Castro (alqotel) Committed by Alex Bennée
Browse files

tests/docker: run script use realpath instead of readlink


The alpine docker image only comes with busybox, which doesn't have the
'-e' option on its readlink, so change it to 'realpath' to avoid that
problem.

Suggested-by: default avatarDaniel P. Berrangé <berrange@redhat.com>
Signed-off-by: default avatarLucas Mateus Castro (alqotel) <lucas.araujo@eldorado.org.br>
Message-Id: <20220922135516.33627-5-lucas.araujo@eldorado.org.br>
Signed-off-by: default avatarAlex Bennée <alex.bennee@linaro.org>
Message-Id: <20220929114231.583801-5-alex.bennee@linaro.org>
parent 556ede02
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ if test -n "$V"; then
set -x
fi
BASE="$(dirname $(readlink -e $0))"
BASE="$(dirname $(realpath $0))"
# Prepare the environment
export PATH=/usr/lib/ccache:/usr/lib64/ccache:$PATH
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment