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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/mdtag')
-rwxr-xr-xscripts/mdtag23
1 files changed, 0 insertions, 23 deletions
diff --git a/scripts/mdtag b/scripts/mdtag
deleted file mode 100755
index a574f46ec4..0000000000
--- a/scripts/mdtag
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/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
-