ソースを参照

pgm: Handle exceptions in Clean 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: Ic06bf16c9bfc79753a9ec767f8030a12887df168
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v5.3.0.201903061415-rc1
Matthias Sohn 5年前
コミット
5482980e4f
1個のファイルの変更6行の追加1行の削除
  1. 6
    1
      org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Clean.java

+ 6
- 1
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Clean.java ファイルの表示

@@ -43,10 +43,13 @@

package org.eclipse.jgit.pgm;

import java.io.IOException;
import java.text.MessageFormat;
import java.util.Set;

import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.errors.GitAPIException;
import org.eclipse.jgit.errors.NoWorkTreeException;
import org.eclipse.jgit.pgm.internal.CLIText;
import org.kohsuke.args4j.Option;

@@ -64,7 +67,7 @@ class Clean extends TextBuiltin {

/** {@inheritDoc} */
@Override
protected void run() throws Exception {
protected void run() {
try (Git git = new Git(db)) {
boolean requireForce = git.getRepository().getConfig()
.getBoolean("clean", "requireForce", true); //$NON-NLS-1$ //$NON-NLS-2$
@@ -82,6 +85,8 @@ class Clean extends TextBuiltin {
outw.println(MessageFormat.format(CLIText.get().removing,
removedFile));
}
} catch (NoWorkTreeException | GitAPIException | IOException e) {
throw die(e.getMessage(), e);
}
}
}

読み込み中…
キャンセル
保存