From 154d847f82aedc8947a086b54bbb3d6cfad747de Mon Sep 17 00:00:00 2001 From: David Farning Date: Wed, 11 Feb 2009 19:16:35 +0000 Subject: improve error messages' --- (limited to 'sugar-jhbuild') diff --git a/sugar-jhbuild b/sugar-jhbuild index 691eb36..cb64ba0 100755 --- a/sugar-jhbuild +++ b/sugar-jhbuild @@ -25,21 +25,22 @@ if os.path.exists(jhbuild_dir): cwd = os.getcwd() os.chdir(jhbuild_dir) - print 'Updating jhbuild...' + print 'Updating upstream jhbuild...' retcode = subprocess.call(['git', 'pull']) if retcode: - print 'Failed to update jhbuild.' + print 'Failed to update upstream jhbuild.' os.chdir(cwd) else: cwd = os.getcwd() os.chdir(base_dir) + print 'Cloning upstream jhbuild' jhbuild_repo = 'git://git.gnome.org/preview/jhbuild' retcode = subprocess.call(['git', 'clone', jhbuild_repo]) if retcode: - print 'Failed to clone sugar-jhbuild.' + print 'Failed to clone upstream jhbuild.' os.chdir(cwd) -- cgit v0.9.1