All pastes #1906145 Raw Edit

nightly.sh

public shellscript v1 · immutable
#1906145 ·published 2010-07-22 18:35 UTC
rendered paste body
DIR=/opt/minefield32LATEST="$(wget -O - -q http://nightly.mozilla.org | grep "Linux Intel" | tail -n1 | sed -r 's%.+(http://.+\.tar.bz2).+%\1%')"FILE=$(mktemp /tmp/nightlyXXXXXX.tar.bz2)mkdir -p "$DIR"find "$DIR" -mindepth 1 -deletewget -O "$FILE" "$LATEST"if [[ $? -ne 0 ]]; then	echo "Error downloading nightly." >&2	exit 1fitar xjvf "$FILE" -C "$DIR" --strip-components 1rm "$FILE"