cli: fix force flag debug print in init

This commit is contained in:
Nils Hanke 2023-02-22 18:29:25 +01:00 committed by Nils Hanke
parent d2cdc85cf7
commit 6ae2bc9772

View File

@ -330,7 +330,7 @@ func (i *initCmd) evalFlagArgs(cmd *cobra.Command) (initFlags, error) {
if err != nil {
return initFlags{}, fmt.Errorf("parsing force argument: %w", err)
}
i.log.Debugf("force flag is %t", configPath)
i.log.Debugf("force flag is %t", force)
return initFlags{
configPath: configPath,