Skip to content

Commit

Permalink
Fixed CI/CD issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tegefaulkes committed Mar 10, 2022
1 parent 9983ae7 commit 1436b17
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/vaults/VaultOps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*/
import type Logger from '@matrixai/logger';
import type { Vault } from './Vault';
import type { Stat } from 'encryptedfs';
import path from 'path';
import * as vaultsErrors from './errors';
import * as vaultsUtils from './utils';
Expand Down Expand Up @@ -114,7 +115,7 @@ async function getSecret(vault: Vault, secretName: string): Promise<Buffer> {
}
}

async function statSecret(vault: Vault, secretName: string) {
async function statSecret(vault: Vault, secretName: string): Promise<Stat> {
try {
return await vault.readF(async (efs) => {
return await efs.stat(secretName);
Expand Down

0 comments on commit 1436b17

Please sign in to comment.