From c2a68dda435d501e58e34b27b2ff73960ac21018 Mon Sep 17 00:00:00 2001 From: Sweth Chandramouli Date: Sun, 24 Nov 2019 17:21:27 -0600 Subject: [PATCH] implement fix in issue 139 --- libexec/plenv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/plenv b/libexec/plenv index 0651b1a..59573c1 100755 --- a/libexec/plenv +++ b/libexec/plenv @@ -12,7 +12,7 @@ if [ -n "$PLENV_DEBUG" ]; then set -x fi -read READLINK < <( type -p greadlink readlink ) || { +read READLINK < <( command -v greadlink readlink ) || { echo "plenv: cannot find readlink - are you missing GNU coreutils?" >&2 exit 1 }