repo.or.cz
/
monodevelop.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* Makefile.am:
[monodevelop.git]
/
scripts
/
mdtag
blob
4fb8fa24e6711fba9c4f680938ce6cd86a3fd1a7
1
#!/bin/bash
2
3
usage
()
4
{
5
echo
""
6
echo
"Usage : mdtag branchVersionNumber tagVersionNumber"
7
echo
""
8
echo
"Creates a new tag of MonoDevelop using the provided branch number as source."
9
echo
""
10
}
11
12
if
[
x
$1
=
x
];
then
13
usage
14
exit
1
15
fi
16
17
if
[
x
$2
=
x
];
then
18
echo
"Branch version number not provided"
19
exit
1
20
fi
21
22
.
/
mdbranch
--tag
$1 $2
23