Updated hm script to work with Subversion.
This commit is contained in:
parent
81227b8fab
commit
985648a95f
8
hm.py
8
hm.py
|
@ -276,12 +276,12 @@ def open_project():
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def update():
|
def update():
|
||||||
print "Running Mercurial pull and update..."
|
print "Running Subversion update..."
|
||||||
os.system('hg pull')
|
os.system('svn update')
|
||||||
os.system('hg update')
|
|
||||||
|
|
||||||
def revision():
|
def revision():
|
||||||
os.system('hg identify')
|
# While this doesn't print out the revision specifically, it will do.
|
||||||
|
os.system('svn info')
|
||||||
|
|
||||||
def destroy():
|
def destroy():
|
||||||
msg = "Are you sure you want to remove the ./bin/ directory? [y/N]"
|
msg = "Are you sure you want to remove the ./bin/ directory? [y/N]"
|
||||||
|
|
Loading…
Reference in New Issue