From 0476db7c355b04da17f0499349c91dc063fa87b9 Mon Sep 17 00:00:00 2001 From: k725 Date: Fri, 29 Mar 2024 23:47:37 +0900 Subject: [PATCH] fix usage message --- pkg/app/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/app/config.go b/pkg/app/config.go index 893bb9c..6514391 100644 --- a/pkg/app/config.go +++ b/pkg/app/config.go @@ -99,7 +99,7 @@ func (app *app) getConfig(args []string) error { installCmd := &ff.Command{ Name: "install", - Usage: "apc-p15-tool upload --keyfile key.pem --certfile cert.pem --apchost example.com:22 --fingerprint 123abc --username apc --password test", + Usage: "apc-p15-tool install --keyfile key.pem --certfile cert.pem --apchost example.com:22 --fingerprint 123abc --username apc --password test", ShortHelp: "install the specified key and cert pem files on an apc ups (they will be converted to a comaptible p15 file)", Flags: installFlags, Exec: app.cmdInstall,