From 541ebfe76dc6ce57df0cd89d54eab7cc5a9adb80 Mon Sep 17 00:00:00 2001 From: pabs Date: Mon, 14 Aug 2006 08:09:48 +0000 Subject: [PATCH] Allow etl to bootstrap in directories with spaces in their names. git-svn-id: http://svn.voria.com/code@216 1f10aa63-cdf2-0310-b900-c93c546f37ac --- ETL/trunk/bootstrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ETL/trunk/bootstrap b/ETL/trunk/bootstrap index 485bf29..461491e 100755 --- a/ETL/trunk/bootstrap +++ b/ETL/trunk/bootstrap @@ -15,7 +15,7 @@ cd "$(dirname $0)" # Environment Variables BOOTSTRAP_NAME="$(basename $0)" -CONFIG_DIR="$(pwd)/config" +CONFIG_DIR="config" [ -x /bin/cygpath ] && CONFIG_DIR="`cygpath -m -s "$CONFIG_DIR"`" [ -x /bin/cygpath ] && CONFIG_DIR="`cygpath -u "$CONFIG_DIR"`" @@ -213,4 +213,4 @@ echo $BOOTSTRAP_NAME: Complete. cleanup; # Move back to the current directory -cd $CURR_DIR +cd "$CURR_DIR" -- 2.7.4