*** no comment ***

This commit is contained in:
John Wiegley 2007-05-11 07:24:54 +00:00
parent 8a628ec3ed
commit dfcda6c709

View file

@ -29,7 +29,7 @@ USING_GIT=true
cmd=$(which git 2>&1) cmd=$(which git 2>&1)
if [ ! -x "$cmd" ]; then if [ ! -x "$cmd" ]; then
USING_GIT=false USING_GIT=false
SVN_REPO=https://ledger.svn.sourceforge.net/svnroot/ledger LEDGER_SVN=https://ledger.svn.sourceforge.net/svnroot/ledger
elif [ -d $HOME/src/ledger/.git ]; then elif [ -d $HOME/src/ledger/.git ]; then
LEDGER_GIT=$HOME/src/ledger LEDGER_GIT=$HOME/src/ledger
else else
@ -45,7 +45,7 @@ fi
if [ "$USING_GIT" = "true" ]; then if [ "$USING_GIT" = "true" ]; then
git clone $LEDGER_GIT local_git || exit 1 git clone $LEDGER_GIT local_git || exit 1
else else
svn checkout $SVN_REPO local_svn svn checkout $LEDGER_SVN local_svn
fi fi
function dup_working_tree() { function dup_working_tree() {