From d9fff40f6b77f082bc8d7a4045f215eb98b4cdd8 Mon Sep 17 00:00:00 2001 From: Sam Lang Date: Fri, 1 Feb 2013 16:07:29 -0600 Subject: [PATCH] task/chdir-coredump: Use readlink -e realpath isn't available everywhere, use readlink -e instead. Signed-off-by: Sam Lang --- teuthology/task/chdir-coredump | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/chdir-coredump b/teuthology/task/chdir-coredump index b27904eaf6bc8..9c0b4581dc567 100644 --- a/teuthology/task/chdir-coredump +++ b/teuthology/task/chdir-coredump @@ -1,7 +1,7 @@ #!/bin/sh set -e -testdir=$(realpath $(dirname $0)) +testdir=$(readlink -e $(dirname $0)) # valgrind only dumps to cwd, so cwd there... cd ${testdir}/archive/coredump -- 2.39.5