mirror of
https://github.com/servo/servo.git
synced 2025-07-03 21:43:41 +01:00
12 lines
236 B
Bash
Executable file
12 lines
236 B
Bash
Executable file
#!/bin/sh
|
|
task_id="$1"
|
|
artifact="$2"
|
|
shift 2
|
|
url="https://queue.taskcluster.net/v1/task/${task_id}/artifacts/${artifact}"
|
|
echo "Fetching $url" >&2
|
|
curl \
|
|
--retry 5 \
|
|
--connect-timeout 10 \
|
|
--location \
|
|
"$url" \
|
|
"$@"
|