Browse Source

pgm: Handle exceptions in Status command

This avoids we show a stacktrace on the console by default when this
type of exception is thrown during the run method is executed.

Change-Id: I662a343fbb46c35090bd6f840e5a35a88036a65a
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v5.3.0.201903061415-rc1
Matthias Sohn 5 years ago
parent
commit
c6bd13922f
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Status.java

+ 5
- 1
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Status.java View File

@@ -54,6 +54,8 @@ import java.util.TreeSet;

import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.StatusCommand;
import org.eclipse.jgit.api.errors.GitAPIException;
import org.eclipse.jgit.errors.NoWorkTreeException;
import org.eclipse.jgit.lib.Constants;
import org.eclipse.jgit.lib.IndexDiff.StageState;
import org.eclipse.jgit.lib.Ref;
@@ -88,7 +90,7 @@ class Status extends TextBuiltin {

/** {@inheritDoc} */
@Override
protected void run() throws Exception {
protected void run() {
try (Git git = new Git(db)) {
StatusCommand statusCommand = git.status();
if (filterPaths != null && filterPaths.size() > 0)
@@ -96,6 +98,8 @@ class Status extends TextBuiltin {
statusCommand.addPath(path);
org.eclipse.jgit.api.Status status = statusCommand.call();
printStatus(status);
} catch (GitAPIException | NoWorkTreeException | IOException e) {
throw die(e.getMessage(), e);
}
}


Loading…
Cancel
Save