mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-08-16 07:36:04 +00:00
👕 Fix the linter error
This commit is contained in:
parent
d22e30f86d
commit
a58f72ed87
@ -132,7 +132,11 @@ func runLicenseRecieverServer() {
|
|||||||
log.Info().Msg("Alternatively enter your license key:")
|
log.Info().Msg("Alternatively enter your license key:")
|
||||||
|
|
||||||
var licenseKey string
|
var licenseKey string
|
||||||
fmt.Scanf("%s", &licenseKey)
|
_, err := fmt.Scanf("%s", &licenseKey)
|
||||||
|
if err != nil {
|
||||||
|
log.Error().Err(err).Send()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
updateLicense(licenseKey)
|
updateLicense(licenseKey)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user