From 82af13ad1f401fd79014584205b79274a8901247 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Wed, 2 Mar 2011 12:46:37 +0100 Subject: [PATCH] tried to fix some install issues (doctrine path) --- misc/tools/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/tools/install.sh b/misc/tools/install.sh index b4e1cad..56b8c70 100755 --- a/misc/tools/install.sh +++ b/misc/tools/install.sh @@ -65,7 +65,7 @@ get_db_name() { echo echo doctrine setup... -ask "doctrine path?" /usr/local/lib +ask "doctrine path?" /usr/local/lib/doctrine-orm dtdir=$REPLY REPLY=y @@ -102,8 +102,8 @@ if [ "$REPLY" == 'y' ]; then git clone $vz_git $vzdir pushd $vzdir/lib/vendor - ln -s $dtdir/lib/Doctrine/ . - ln -s $dtdir/lib/vendor/Symfony/ ./Doctrine/ + ln -s $dtdir/lib/Doctrine . + ln -s $dtdir/lib/vendor/Symfony ./Doctrine/ # ln -s $dtdir/Doctrine/ . popd fi