blob: 463fc382c47035c20ca1d9b39f46f698b28a2f3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env bash
# We want to catch any unexpected failure, and exit immediately
set -e
# Download helper for cp, to be called from the download wrapper script
# Expected arguments:
# $1: output file
# $2: source file
# And this environment:
# LOCALFILES: the cp command to call
output="${1}"
source="${2}"
${LOCALFILES} "${source}" "${output}"
|