Skip to content

Commit

Permalink
fix: correct typo in README and ensure async key import handling
Browse files Browse the repository at this point in the history
  • Loading branch information
phukon committed Jan 14, 2025
1 parent f43b4d3 commit 377cc34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ gitkeykit import my_key.txt
gitkeykit --reset

# Show version number
gitkeykit --verion
gitkeykit --version

# Display help information and available commands
gitkeykit --help
Expand Down
2 changes: 1 addition & 1 deletion bin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function usage() {

async function handleImport(keyPath: string): Promise<void> {
try {
importKey(keyPath);
await importKey(keyPath);
logger.log(`Imported key from ${keyPath}`);
await start();
} catch (error) {
Expand Down

0 comments on commit 377cc34

Please sign in to comment.