diff options
author | Josh Bell <josh@lindenlab.com> | 2008-01-15 20:51:39 +0000 |
---|---|---|
committer | Josh Bell <josh@lindenlab.com> | 2008-01-15 20:51:39 +0000 |
commit | 9cb55b05c29124c4b83a4ec22aba4a4f3290d52a (patch) | |
tree | f34e82463810a023cf7f1b1e7f77160b52f563dd /scripts | |
parent | 159d2d471f2dc0f4c723bce0199baf6988340f80 (diff) |
Handle SVN not being set as an environment variable.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/update_version_files.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/update_version_files.py b/scripts/update_version_files.py index fe914f3917..077120127b 100755 --- a/scripts/update_version_files.py +++ b/scripts/update_version_files.py @@ -12,7 +12,7 @@ import getopt, sys, os, re, commands from indra.util import llversion svn = os.path.expandvars("${SVN}") -if not svn: svn = "svn" +if not svn or svn == "${SVN}": svn = "svn" def usage(): print "Usage:" |