Skip to content

Commit abde3d3

Browse files
committed
Merge branch 'so/rev-parser-errormessage-fix'
Error message fix. * so/rev-parser-errormessage-fix: revision: fix die() message for "--unpacked="
2 parents 4339259 + f649aaa commit abde3d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

revision.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2335,7 +2335,7 @@ static int handle_revision_opt(struct rev_info *revs, int argc, const char **arg
23352335
} else if (!strcmp(arg, "--unpacked")) {
23362336
revs->unpacked = 1;
23372337
} else if (starts_with(arg, "--unpacked=")) {
2338-
die("--unpacked=<packfile> no longer supported.");
2338+
die(_("--unpacked=<packfile> no longer supported"));
23392339
} else if (!strcmp(arg, "-r")) {
23402340
revs->diff = 1;
23412341
revs->diffopt.flags.recursive = 1;

0 commit comments

Comments
 (0)