Download this file
17 lines (16 with data), 437 Bytes
#!/bin/bash
base_path="/home/thomas/work_house/tuxboot/"
release_path="/home/thomas/work_house/tuxboot/tuxboot-release/"
mkdir -p $base_path
mkdir -p $release_path
pushd $base_path
rvern=`cat $base_path/version`
make clean
rm Makefile*
rm release/*.gz
rm release/*linux*
git clean -d -f
set -e
mkdir -p $release_path/$rvern/
git archive --format=tar --prefix=tuxboot-$rvern/ $rvern | gzip > $release_path/tuxboot-$rvern.src.tar.gz
popd
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.