diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-10-09 20:28:39 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-10-09 20:28:39 +0100 |
commit | b8a82336db61229151aaed14082fe2e49b97c823 (patch) | |
tree | 8515a379a008148e099c344c916715eda08881ba /pull_from_master.sh | |
parent | cbabb9cdb401a65c4ad0bc7b4d9b2c4af4eeb032 (diff) | |
download | prosody-b8a82336db61229151aaed14082fe2e49b97c823.tar.gz prosody-b8a82336db61229151aaed14082fe2e49b97c823.zip |
Updated pull script for new repo
Diffstat (limited to 'pull_from_master.sh')
-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/ |