From e6f44bceb396e0e9a4c5dd58dfb6454b9b46c912 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Tue, 19 Sep 2023 22:32:15 +0200 Subject: [PATCH] Fix windows and mac builds --- agent/systemauth/biometrics/touchid.go | 4 ++++ agent/systemauth/biometrics/windows.go | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/agent/systemauth/biometrics/touchid.go b/agent/systemauth/biometrics/touchid.go index f20e2e4..710566d 100644 --- a/agent/systemauth/biometrics/touchid.go +++ b/agent/systemauth/biometrics/touchid.go @@ -20,3 +20,7 @@ func CheckBiometrics(approvalType Approval) bool { return false } } + +func BiometricsWorking() bool { + return false +} diff --git a/agent/systemauth/biometrics/windows.go b/agent/systemauth/biometrics/windows.go index 8bcc1c4..e86cfe9 100644 --- a/agent/systemauth/biometrics/windows.go +++ b/agent/systemauth/biometrics/windows.go @@ -6,3 +6,7 @@ func CheckBiometrics(approvalType Approval) bool { log.Info("Biometrics undefined on windows... skipping") return true } + +func BiometricsWorking() bool { + return false +}