Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar-jhbuild
diff options
context:
space:
mode:
authorDavid Farning <dfarning@3000N100LINUX.(none)>2009-02-11 19:16:35 (GMT)
committer David Farning <dfarning@3000N100LINUX.(none)>2009-02-11 19:16:35 (GMT)
commit154d847f82aedc8947a086b54bbb3d6cfad747de (patch)
tree1536439db1e971650e268f40a2f37290f00bd76c /sugar-jhbuild
parent93ad54c47a5a26b08688dd2df58e26a780bd1946 (diff)
improve error messages'
Diffstat (limited to 'sugar-jhbuild')
-rwxr-xr-xsugar-jhbuild7
1 files changed, 4 insertions, 3 deletions
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)