Hi, I am doing more practice :-) With xwit example ....
$ git-dpm update-patches /home/osamu/src/exp/xwit Switched to branch 'master' git-dpm: Calling merge-patched-into-debian first... Deleted branch patched (was 6e40109). fatal: pathspec 'debian/patches/home/osamu/src/exp/xwit/debian/patches' did not match any files I kind of smell this must be due to my local setting interfaring git-dpm shell script. By unsetting CDPATH, this problem is gone..... :-) So I suggest git-dpm to unset CDPATH when it starts. --------------------------------- $ diff -u git-dpm.orig git-dpm.new --- git-dpm.orig 2010-07-14 23:26:17.425193073 +0900 +++ git-dpm.new 2010-07-14 23:26:56.697191538 +0900 @@ -17,6 +17,7 @@ # This is assume throughtout the whole file, do not remove! set -e +unset CDPATH VERSION="0.1.2" GIT="git" --------------------------------- What do you think? -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

