strip plugin path from zipped files

This commit is contained in:
idk
2021-06-25 19:35:09 -04:00
parent 784d67a138
commit a7e468538a
2 changed files with 4 additions and 3 deletions

View File

@ -79,7 +79,7 @@ func (pc *PluginConfig) PrintPluginName() string {
}
func (pc *PluginConfig) PrintKeyName() string {
if pc.KeyName == nil {
return fmt.Sprintf("key=%s\n", "")
return ""
}
return fmt.Sprintf("key=%s\n", *pc.KeyName)
}