19 lines
340 B
Bash
19 lines
340 B
Bash
#!/bin/sh
|
|
|
|
####
|
|
# This file must stay /bin/sh and POSIX compliant for BSD portability.
|
|
# Copy-paste the entire script into http://shellcheck.net to check.
|
|
####
|
|
|
|
# Die on any error for Travis CI to automatically retry:
|
|
set -e
|
|
|
|
download_dir="${0%/*}/download"
|
|
|
|
mkdir -p "${download_dir}"
|
|
cd "${download_dir}"
|
|
cd ..
|
|
|
|
tar -xvf download.tar.gz
|
|
|