mirror of
https://github.com/google/brotli.git
synced 2024-11-25 04:50:05 +00:00
8 lines
283 B
Bash
8 lines
283 B
Bash
|
#!/bin/bash
|
||
|
set -x
|
||
|
BROTLI_TAG=${BROTLI_TAG:-dev/null}
|
||
|
BROTLI_TAG="${BROTLI_TAG//'/'/%2F}" # Escaping for tag names with slash (e.g. "dev/null")
|
||
|
ARCHIVE=testdata.txz
|
||
|
curl -L https://github.com/google/brotli/releases/download/${BROTLI_TAG}/${ARCHIVE} -o ${ARCHIVE}
|
||
|
tar xvfJ ${ARCHIVE}
|