From 271bcbde19675a9d5694bada464080c55691396d Mon Sep 17 00:00:00 2001 From: David Kaltschmidt Date: Tue, 15 Dec 2015 12:07:47 +0100 Subject: [PATCH] Correct path for scope version command --- bin/release | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/release b/bin/release index 053498f2f..9cb89fe12 100755 --- a/bin/release +++ b/bin/release @@ -99,7 +99,7 @@ build() { fi ## Run tests with the distributables, including version check - v=$(./app/scope-app -version | grep -o '[0-9].*') + v=$(./prog/scope version | grep -o '[0-9].*') if ! [ "$v" == "$VERSION" ]; then echo "Version of distributable "$v" does not match release version $VERSION" >&2 exit 1