From 985648a95f76ff263aeabaec5a2b8c8dde7dabee Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Mon, 26 Oct 2009 15:19:05 +0000 Subject: [PATCH] Updated hm script to work with Subversion. --- hm.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hm.py b/hm.py index 6af33c37..be2a0eda 100644 --- a/hm.py +++ b/hm.py @@ -276,12 +276,12 @@ def open_project(): return False def update(): - print "Running Mercurial pull and update..." - os.system('hg pull') - os.system('hg update') + print "Running Subversion update..." + os.system('svn update') def revision(): - os.system('hg identify') + # While this doesn't print out the revision specifically, it will do. + os.system('svn info') def destroy(): msg = "Are you sure you want to remove the ./bin/ directory? [y/N]"