2014-07-02 23:11:25 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2014-08-03 19:53:40 +02:00
|
|
|
# We want to catch any unexpected failure, and exit immediately
|
2014-07-02 23:11:25 +02:00
|
|
|
set -e
|
|
|
|
|
2014-08-03 19:53:40 +02:00
|
|
|
# Download helper for scp, to be called from the download wrapper script
|
|
|
|
# Expected arguments:
|
|
|
|
# $1: output file
|
|
|
|
# $2: URL
|
2014-07-02 23:11:25 +02:00
|
|
|
# And this environment:
|
|
|
|
# SCP : the scp command to call
|
|
|
|
|
2014-08-03 19:53:40 +02:00
|
|
|
output="${1}"
|
|
|
|
url="${2}"
|
2014-07-02 23:11:25 +02:00
|
|
|
|
2014-08-03 19:53:40 +02:00
|
|
|
${SCP} "${url}" "${output}"
|