Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mdtag « scripts - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4fb8fa24e6711fba9c4f680938ce6cd86a3fd1a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

usage ()
{
	echo ""
	echo "Usage : mdtag branchVersionNumber tagVersionNumber"
	echo ""
	echo "Creates a new tag of MonoDevelop using the provided branch number as source."
	echo ""
}

if [ x$1 = x ]; then
	usage
	exit 1
fi

if [ x$2 = x ]; then
	echo "Branch version number not provided"
	exit 1
fi

./mdbranch --tag $1 $2