mirror of
https://github.com/google/brotli.git
synced 2024-11-08 13:20:05 +00:00
ce9c16e882
PiperOrigin-RevId: 565017690
8 lines
283 B
Bash
Executable File
8 lines
283 B
Bash
Executable File
#!/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}
|