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: a574f46ec4a70dd4c9d39f6618385cc9c5adcfe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env 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