From c16b90918f5a9493876e3d16776fb18f67cbc09b Mon Sep 17 00:00:00 2001 From: Eugene Burkov Date: Wed, 20 Nov 2024 16:42:47 +0300 Subject: [PATCH] home: fix help --- internal/home/options.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/internal/home/options.go b/internal/home/options.go index 10839d52..dd7e53e4 100644 --- a/internal/home/options.go +++ b/internal/home/options.go @@ -314,9 +314,10 @@ var cmdLineOpts = []cmdLineOpt{{ updateNoValue: func(o options) (options, error) { o.noPermCheck = true; return o, nil }, effect: nil, serialize: func(o options) (val string, ok bool) { return "", o.noPermCheck }, - description: "Check and migrate permissions of security-sensitive files.", - longName: "no-permcheck", - shortName: "", + description: "Skip checking and migration of permissions " + + "of security-sensitive files.", + longName: "no-permcheck", + shortName: "", }, { updateWithValue: nil, updateNoValue: nil,