mirror of https://github.com/apache/lucene.git
allow checkout dir cmdline arg to be relative
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1304365 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e36ee74921
commit
37acabf4a8
|
@ -159,7 +159,7 @@ def main():
|
|||
doPush = '-push' in sys.argv
|
||||
if doPush:
|
||||
sys.argv.remove('-push')
|
||||
root = sys.argv[1]
|
||||
root = os.path.abspath(sys.argv[1])
|
||||
version = sys.argv[2]
|
||||
gpgKeyID = sys.argv[3]
|
||||
rcNum = int(sys.argv[4])
|
||||
|
|
Loading…
Reference in New Issue