-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathrelease_src.sh
More file actions
executable file
·38 lines (30 loc) · 820 Bytes
/
release_src.sh
File metadata and controls
executable file
·38 lines (30 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
PREFIX=pj64raphnetraw
HEXFILE=$PREFIX.hex
echo "Release script for $PREFIX"
if [ $# -ne 2 ]; then
echo "Syntax: ./release.sh version releasedir"
echo
echo "ex: './release 1.0' will produce $PREFIX-1.0.tar.gz in releasedir out of git HEAD,"
echo "and place it in the release directory."
echo
echo "It will also create a tag named v1.0"
exit
fi
VERSION=$1
RELEASEDIR=$2
DIRNAME=$PREFIX-$VERSION
FILENAME=$PREFIX-$VERSION.tar.gz
TAG=v$VERSION
echo "Version: $VERSION"
echo "Filename: $FILENAME"
echo "Release directory: $RELEASEDIR"
echo "--------"
echo "Ready? Press ENTER to go ahead (or CTRL+C to cancel)"
read
if [ -f $RELEASEDIR/$FILENAME ]; then
echo "Release file already exists!"
exit 1
fi
git tag $TAG -f
git archive --format=tar --prefix=$DIRNAME/ HEAD | gzip > $RELEASEDIR/$FILENAME