mirror of
https://github.com/rwinkhart/rcw.git
synced 2026-08-27 20:36:30 -04:00
Ignore unused error
This commit is contained in:
@@ -21,7 +21,7 @@ func RunSanityCheck(path string, passphrase []byte) error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.New("Failed to read sanity check file (" + path + ")")
|
return errors.New("Failed to read sanity check file (" + path + ")")
|
||||||
}
|
}
|
||||||
decBytes, err := Decrypt(encBytes, passphrase)
|
decBytes, _ := Decrypt(encBytes, passphrase)
|
||||||
if string(decBytes) == "thx4usin'rcw" {
|
if string(decBytes) == "thx4usin'rcw" {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user