I think there is a problem with the regression testing "Temp switch to branch 3.0.3". I'm seeing this issue each time the regression tests are run:
fatal: The remote end hung up unexpectedly Begin nightly-disk Sat Oct 10 10:42:01 EDT 2009 fatal: The remote end hung up unexpectedly I think it's the git commands. To test this theory: [...@polo:~/src/BaculaRegressionTesting-TRUNK/regress] $ git pull fatal: The remote end hung up unexpectedly I think the cause was this line in .git/config: url = git://bacula.git.sourceforge.net/gitroot/bacula Changing that file to url = git://bacula.git.sourceforge.net/gitroot/bacula/bacula removed the error. FYI. The next issue is this command: git checkout `git branch -r | grep "3\.0\.3" | line` -bash: line: command not found It appears line(1) is not universal. How about head(1) instead? $ git checkout `git branch -r | grep "3\.0\.3" | head -1` Note: moving to 'origin/3.0.3' which isn't a local branch If you want to create a new branch from this checkout, you may do so (now or later) by using -b with the checkout command again. Example: git checkout -b <new_branch_name> HEAD is now at fb11f7a... Update notes and date $ echo $? 0 If agreed, I'll make the change to the file. ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ Bacula-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/bacula-devel
