Skip to content

Commit

Permalink
defpath: normalize error format
Browse files Browse the repository at this point in the history
  • Loading branch information
edvbld committed Sep 21, 2020
1 parent fa98950 commit 07bf2a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/main/java/org/openjdk/skara/cli/GitDefpath.java
Expand Up @@ -208,7 +208,7 @@ public static void main(String[] args) throws IOException {
var cwd = Path.of("").toAbsolutePath();
var repository = Repository.get(cwd);
if (!repository.isPresent()) {
die(String.format("error: %s is not a hg repository", cwd.toString()));
die(String.format("error: %s is not a repository", cwd.toString()));
}
var repo = repository.get();

Expand Down

0 comments on commit 07bf2a5

Please sign in to comment.