diff options
-rwxr-xr-x | pull_from_master.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pull_from_master.sh b/pull_from_master.sh index 8ac568a4..3c909b76 100755 --- a/pull_from_master.sh +++ b/pull_from_master.sh @@ -1,4 +1,3 @@ #!/bin/sh -echo "Pulling from http://getjabber.ath.cx:4000/" -echo "You must have Mercurial (the hg command)" -hg pull http://getjabber.ath.cx:4000/ +which hg >/dev/null || echo "You must have Mercurial (the hg command)" +hg pull http://heavy-horse.co.uk:4000/ |