You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openresty/util/get-tarball

22 lines
365 B
Plaintext

#!/bin/bash
root=$(readlink -f -- "$(dirname -- "$0")/..")
work=$root/work
if [ ! -d $work ]; then
mkdir $work || exit 1
fi
url=$1
outfile=$3
cachefile=$work/$outfile
if [ -s $cachefile ]; then
cp $work/$outfile $outfile || exit 1
else
wget --no-check-certificate $1 -O $3 || exit 1
if [ $? == 0 ]; then
cp $3 $work/ || exit 1
fi
fi