diff --git a/tribes-cli/utils/ssh/identity.ts b/tribes-cli/utils/ssh/identity.ts index 0a8abbaa..5cb83cfd 100644 --- a/tribes-cli/utils/ssh/identity.ts +++ b/tribes-cli/utils/ssh/identity.ts @@ -35,7 +35,10 @@ const resolveIdentityFile = async () => { export const defaultIdentityFile = async (supplied?: string) => { const cached = localStorage.getItem('identity-file-path'); - if (cached && cached !== supplied && await question('confirm', `Found identity file ${cached}. Use it?`)) { + if ( + cached && cached !== supplied && + await question('confirm', `Found previously-used identity file ${cached}. Use it?`, true) + ) { return cached; }