Browse Source

Allow version builtin to run without git repository

The version builtin should be able to run without a git directory to call
it from wherever you want.

Change-Id: I1a3bce662e6788b860a275ee50315af8d5cc094a
Signed-off-by: Benjamin Muskalla <bmuskalla@eclipsesource.com>
tags/v0.9.1
Benjamin Muskalla 13 years ago
parent
commit
d08be7aceb
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Version.java

+ 5
- 0
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Version.java View File

@@ -55,4 +55,9 @@ class Version extends TextBuiltin {

out.println(MessageFormat.format(CLIText.get().jgitVersion, pkg.getImplementationVersion()));
}

@Override
protected final boolean requiresRepository() {
return false;
}
}

Loading…
Cancel
Save