From e8403315a80debdf5a2f48e4331e53fc4cf739c4 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Thu, 8 May 2025 14:28:36 +0000 Subject: [PATCH] Ignore unused error --- wrappers/sanityCheck.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrappers/sanityCheck.go b/wrappers/sanityCheck.go index 6e16c3f..d92778b 100644 --- a/wrappers/sanityCheck.go +++ b/wrappers/sanityCheck.go @@ -21,7 +21,7 @@ func RunSanityCheck(path string, passphrase []byte) error { if err != nil { return errors.New("Failed to read sanity check file (" + path + ")") } - decBytes, err := Decrypt(encBytes, passphrase) + decBytes, _ := Decrypt(encBytes, passphrase) if string(decBytes) == "thx4usin'rcw" { return nil }