Skip to content
Snippets Groups Projects
Commit 9cb55b05 authored by Josh Bell's avatar Josh Bell
Browse files

Handle SVN not being set as an environment variable.

parent 159d2d47
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ import getopt, sys, os, re, commands ...@@ -12,7 +12,7 @@ import getopt, sys, os, re, commands
from indra.util import llversion from indra.util import llversion
svn = os.path.expandvars("${SVN}") svn = os.path.expandvars("${SVN}")
if not svn: svn = "svn" if not svn or svn == "${SVN}": svn = "svn"
def usage(): def usage():
print "Usage:" print "Usage:"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment