#!/bin/sh set -e df_tardest="df.tar.bz2" save_tardest="test_save.tgz" cd "$(dirname "$0")" echo "DF_VERSION: $DF_VERSION" echo "DF_FOLDER: $DF_FOLDER" mkdir -p "$DF_FOLDER" # back out of df_linux cd "$DF_FOLDER/.." if ! test -f "$df_tardest"; then minor=$(echo "$DF_VERSION" | cut -d. -f2) patch=$(echo "$DF_VERSION" | cut -d. -f3) echo "Downloading DF $DF_VERSION" while read url; do echo "Attempting download: ${url}" if wget -v "$url" -O "$df_tardest"; then break fi done <