summaryrefslogtreecommitdiff
path: root/support/download/hg
diff options
context:
space:
mode:
Diffstat (limited to 'support/download/hg')
-rwxr-xr-xsupport/download/hg4
1 files changed, 3 insertions, 1 deletions
diff --git a/support/download/hg b/support/download/hg
index 25cb4e9d3..3af01690b 100755
--- a/support/download/hg
+++ b/support/download/hg
@@ -25,13 +25,15 @@ repo="${2}"
cset="${3}"
basename="${4}"
+shift 4 # Get rid of our options
+
# Caller needs to single-quote its arguments to prevent them from
# being expanded a second time (in case there are spaces in them)
_hg() {
eval ${HG} "${@}"
}
-_hg clone ${verbose} --noupdate "'${repo}'" "'${basename}'"
+_hg clone ${verbose} "${@}" --noupdate "'${repo}'" "'${basename}'"
_hg archive ${verbose} --repository "'${basename}'" --type tgz \
--prefix "'${basename}'" --rev "'${cset}'" \