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:
Steven Rowe 2012-03-23 14:20:35 +00:00
parent e36ee74921
commit 37acabf4a8
1 changed files with 1 additions and 1 deletions

View File

@ -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])