Remove more old code for specifying SSH paths

This commit is contained in:
Christian Rocha 2020-09-07 18:40:21 -04:00 committed by Christian Muehlhaeuser
parent a705921a96
commit 6e7cea7e52

View file

@ -15,11 +15,6 @@ import (
)
var (
/*
identityFile string
forceKey bool
*/
memo string
stashCmd = &cobra.Command{
@ -66,16 +61,6 @@ func getCharmConfig() *charm.Config {
log.Fatal(err)
}
/*
if identityFile != "" {
cfg.SSHKeyPath = identityFile
cfg.ForceKey = true
}
if forceKey {
cfg.ForceKey = true
}
*/
return cfg
}