From 8704d73512a14f199a3c659ffba350ba4ea5eba0 Mon Sep 17 00:00:00 2001 From: Zachary Gershman Date: Tue, 21 Jun 2016 08:00:20 -0700 Subject: [PATCH] Remove the need for realpath --- scripts/test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test b/scripts/test index 7f80dce..8d0010a 100755 --- a/scripts/test +++ b/scripts/test @@ -6,7 +6,7 @@ not_installed() { ! command -v $1 > /dev/null 2>&1 } -github_release_resource_dir=$(realpath $(dirname $(dirname $0))) +github_release_resource_dir=$(cd $(dirname $0)/.. && pwd) if not_installed ginkgo; then echo "# ginkgo is not installed! run the following command:"