Skip to content

Commit ab11aca

Browse files
committed
add return statement
1 parent 4f36289 commit ab11aca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/awsService/ec2/sshKeyPair.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export class SshKeyPair {
4141
const maxRetries = 5
4242
await waitUntil(
4343
async () => {
44-
await fs.exists(keyPath)
44+
return await fs.exists(keyPath)
4545
},
4646
{ maxRetries: maxRetries }
4747
)

0 commit comments

Comments
 (0)