3 # We want to catch any unexpected failure, and exit immediately
6 # Download helper for svn, to be called from the download wrapper script
9 # .../svn [-q] OUT_FILE REPO_URL REV BASNAME
12 # SVN : the svn command to call
15 while getopts :q OPT
; do
18 \?) printf "unknown option '%s'\n" "${OPTARG}" >&2; exit 1;;
28 shift 4 # Get rid of our options
30 # Caller needs to single-quote its arguments to prevent them from
31 # being expanded a second time (in case there are spaces in them)
36 _svn
export ${verbose} "${@}" "'${repo}@${rev}'" "'${basename}'"
38 tar czf "${output}" "${basename}"