Merge pull request #4909 from kballard/history_delete_err_msg

Tweak the error message for `history delete --exact foo`
This commit is contained in:
Kevin Ballard 2018-04-18 22:36:18 -07:00 committed by GitHub
commit e03db61dac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -264,7 +264,7 @@ int builtin_history(parser_t &parser, io_streams_t &streams, wchar_t **argv) {
}
if (!opts.case_sensitive) {
streams.err.append_format(
_(L"builtin history delete only supports --case-sensitive\n"));
_(L"builtin history delete --exact requires --case-sensitive\n"));
status = STATUS_INVALID_ARGS;
break;
}