From 6390b1b55218e879aa8fa4a9882a76a509af00fc Mon Sep 17 00:00:00 2001 From: Laurence Withers Date: Mon, 24 Jul 2006 14:57:46 +0100 Subject: [PATCH] Minor fixes to module rename script. --- skel/scripts/release.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/skel/scripts/release.sh b/skel/scripts/release.sh index 390c328..4f7819e 100755 --- a/skel/scripts/release.sh +++ b/skel/scripts/release.sh @@ -11,9 +11,10 @@ # Get the directory of the repository (needed to include functions file) -cd "$(dirname $0)" -REPOS=$(dirname "$(pwd)") -source "${REPOS}/scripts/functions.sh" || exit 1 +cd $(dirname $0) +cd $(dirname $(pwd)) +[ -z "${VERBOSE}" ] && VERBOSE="0" +source "scripts/functions.sh" || exit 1