Hi, On Thu, 20 Sep 2007, Joel Becker wrote: > On Thu, Sep 20, 2007 at 07:08:31PM +0200, Miklos Vajna wrote: > > +test_expect_success "create the submodules" ' > > + for i in a b c d > > + do > > + mkdir $i && > > + cd $i && > > + git init && > > + echo "module $i" > $i.txt && > > + git add $i.txt && > > + git commit -m "Initial commit, submodule $i" && > > + cd .. > > + done > > Silly question: why use the '&&' when you can 'set -e'? As it > currently stands, a failure will still go back around the loop... A "set -e" will make the script exit AFAIR. That's not what we want. A simple "|| break" after the "cd .." will work, though. Ciao, Dscho - 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