Fix building issue in CI

This commit is contained in:
Mingshen Sun 2022-01-09 22:12:41 -08:00
parent 955e50c3d3
commit 6d1b271af6
2 changed files with 2 additions and 2 deletions

View file

@ -576,7 +576,7 @@ extension PasswordDetailTableViewController {
handleError(error: AppError.other(message: "PasswordDoesNotExist")) handleError(error: AppError.other(message: "PasswordDoesNotExist"))
return return
} }
Pass.yubiKeyDecrypt(passwordEntity: passwordEntity, requestPIN: requestYubiKeyPIN, errorHandler: handleError, cancellation: handleCancellation) { password in yubiKeyDecrypt(passwordEntity: passwordEntity, requestPIN: requestYubiKeyPIN, errorHandler: handleError, cancellation: handleCancellation) { password in
self.password = password self.password = password
self.showPassword() self.showPassword()
} }

View file

@ -10,6 +10,6 @@
#define Objective_CBridgingHeader_h #define Objective_CBridgingHeader_h
@import ObjectiveGit; @import ObjectiveGit;
#import <YubiKit.h> #import "YubiKit.h"
#endif /* Objective_CBridgingHeader_h */ #endif /* Objective_CBridgingHeader_h */