Add better messaging when yubikey is not detected.

This commit is contained in:
Mariano Cano 2020-05-15 11:33:04 -07:00
parent 7d61c0003c
commit 012a4734bf

View file

@ -28,7 +28,7 @@ func New(ctx context.Context, opts apiv1.Options) (*YubiKey, error) {
return nil, err
}
if len(cards) == 0 {
return nil, errors.New("error detecting yubikey")
return nil, errors.New("error detecting yubikey: try removing and reconnecting the device")
}
yk, err := piv.Open(cards[0])