Skip to content

Commit

Permalink
displays resolved file path on export path conflicts (#5592)
Browse files Browse the repository at this point in the history
instead of displaying the user-entered path (e.g., '.'), displays the
fully-qualified path resolved by the file system
  • Loading branch information
hughy authored Oct 28, 2024
1 parent 3148ccf commit 1d6161d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ironfish-cli/src/commands/wallet/export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class ExportCommand extends IronfishCommand {

if (fs.existsSync(resolved)) {
await confirmOrQuit(
`There is already an account backup at ${exportPath}` +
`There is already an account backup at ${resolved}` +
`\n\nOverwrite the account backup with new file?`,
)
}
Expand Down

0 comments on commit 1d6161d

Please sign in to comment.