summaryrefslogtreecommitdiff
path: root/src/install.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/install.c')
-rw-r--r--src/install.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/install.c b/src/install.c
index 0c9f086663..f56c0728b9 100644
--- a/src/install.c
+++ b/src/install.c
@@ -132,7 +132,7 @@ static int parse_argv(int argc, char *argv[]) {
}
if (optind >= argc) {
- log_error("Missing verb.");
+ help();
return -EINVAL;
}
@@ -143,7 +143,7 @@ static int parse_argv(int argc, char *argv[]) {
else if (streq(argv[optind], "test"))
arg_action = ACTION_TEST;
else {
- log_error("Unknown verb %s", argv[optind]);
+ log_error("Unknown verb %s.", argv[optind]);
return -EINVAL;
}