This repository has been archived on 2021-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
greenlight/make_tarball.sh

16 lines
234 B
Bash
Executable File

#!/bin/sh
VER=2.8.4
make clean
cd ..
if ! [ -h greenlight-${VER} ]; then
ln -s greenlight greenlight-${VER}
fi
tar \
--exclude=debian \
--exclude=.git \
--exclude=.env \
-hzcf greenlight_${VER}.orig.tar.gz \
greenlight-${VER}