Created better structure of files
This commit is contained in:
19
scripts/create-release.sh
Executable file
19
scripts/create-release.sh
Executable file
@@ -0,0 +1,19 @@
|
||||
#!/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"
|
||||
0
scripts/create-update-xml.sh
Executable file
0
scripts/create-update-xml.sh
Executable file
Reference in New Issue
Block a user