20 lines
450 B
Bash
20 lines
450 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
MAJOR=`cat serial/major`
|
||
|
MINOR=`cat serial/minor`
|
||
|
RELEASE=`cat serial/release`
|
||
|
TOTRELEASE="$MAJOR.$MINOR.$RELEASE"
|
||
|
|
||
|
outname="releases/slt-$TOTRELEASE.tar.gz"
|
||
|
|
||
|
mkdir -p releases
|
||
|
|
||
|
# First check if the named release exists already
|
||
|
if [ -f "$outname" ]; then
|
||
|
echo "The file $outname existes already. Either remove the release from the folder manually or increase the release version."
|
||
|
echo "Aborting."
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
cp slt.tar.gz "$outname"
|