mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jpikus
20.40.2009 39939cbeb2965312e1fee64c4cbf824b37ea857c
opends/src/build-tools/org/opends/build/tools/GetSubversionRevision.java
@@ -115,7 +115,9 @@
    try
    {
      SVNInfo svnInfo = ourClientManager.getWCClient().doInfo(workspacePath, SVNRevision.WORKING);
      SVNRevision revision = svnInfo.getRevision();
      SVNRevision revision = svnInfo.getCommittedRevision();
      if (revision == null)
      {
        System.err.println("WARNING:  Could not determine Subversion " +
@@ -127,6 +129,7 @@
        getProject().setNewProperty(propertyName,
                                    String.valueOf(revision.getNumber()));
      }
    }
    catch (SVNException svnException)
    {