* Tue 2008-02-05 Johannes Schindelin <Johannes.Schindelin@xxxxxx> * Message-Id: alpine.LSU.1.00.0802052236220.8543@xxxxxxxxxx > On at least one machine (not the current one, because I was too lazy), I > have a git alias to call when the patch does not apply, to call another > program in turn which made it easier for me to integrate a non-applying > patch into the current working directory. > > And guess what: this script accesses .dotest/. Yes, I know, it was > _prone_ to move. If somebody has written scripts to do something with the internals, he already knows the internals. I'm confident those can easily track the changes. They are experts already if they use .dotest. All good shell scripts test the conditions before they proceed. Like in this case. Something: dir=.dotest [ -d "$dir" ] || { echo "No directory $dir" >&2; exit 1; } Sloppy scripts are best left to script writers headache. Jari -- Welcome to FOSS revolution: we fix and modify until it shines - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html