#!/bin/bash #--------------------------------------------------------------------- # The script below was used previously to build the following tarball # in this directory: # # upstream-epyrus.tar.gz # If you re-execute the script, it will delete the tarball and try to # re-create and update it. THIS WILL QUITE POSSIBLY FAIL. BACK-UP A # COPY OF THE DIRECTORY. #--------------------------------------------------------------------- set -e PROGBASE=epyrus TARBALL=upstream-$PROGBASE.tar.gz rm -fr $PROGBASE git clone \ https://repo.palemoon.org/athenian200/epyrus.git \ $PROGBASE settreedate $PROGBASE tar zcf $TARBALL $PROGBASE rm -fr $PROGBASE tardate $TARBALL ls -l $TARBALL echo $0: Done