summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDamien Regad <dregad@mantisbt.org>2016-12-17 18:21:44 +0100
committerDamien Regad <dregad@mantisbt.org>2016-12-17 18:22:41 +0100
commit2ddf5a315a7ad44b13191b1989cc90bccde41198 (patch)
treec6df13512a971c1966eeefd0fcf717eb960c5ca3 /scripts
parentf9444cdbc80684fe738e853228dd4fbcd22d1aeb (diff)
downloadadodb-2ddf5a315a7ad44b13191b1989cc90bccde41198.tar.gz
adodb-2ddf5a315a7ad44b13191b1989cc90bccde41198.tar.bz2
adodb-2ddf5a315a7ad44b13191b1989cc90bccde41198.zip
build: fix '--branch' param definition
The trailing '=' was missing, so the branch name could not be specified when using the long parameter (was working OK with '-b'.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/buildrelease.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/buildrelease.py b/scripts/buildrelease.py
index 0b37b97b..6930d169 100755
--- a/scripts/buildrelease.py
+++ b/scripts/buildrelease.py
@@ -41,7 +41,7 @@ exclude_list = (".git*",
# Command-line options
options = "hb:dfk"
-long_options = ["help", "branch", "debug", "fresh", "keep"]
+long_options = ["help", "branch=", "debug", "fresh", "keep"]
# Global flags
debug_mode = False