Add single quotes (#1527)

This commit is contained in:
Laurence Jones 2022-05-17 15:57:04 +01:00 committed by GitHub
parent b8547da4c3
commit c2b298c93a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -218,7 +218,7 @@ cscli dashboard setup -l 0.0.0.0 -p 443 --password <password>
if err := m.LoadConfig(metabaseConfigPath); err != nil {
log.Fatal(err)
}
log.Printf("%s", m.Config.Password)
log.Printf("'%s'", m.Config.Password)
},
}
cmdDashboard.AddCommand(cmdDashShowPassword)