Skip to content

Commit

Permalink
fix: VVPP削除エラーのメッセージが間違っていたので修正 (#2230)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba authored Oct 19, 2024
1 parent 3a1f664 commit 9a6bb5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/electron/manager/vvppManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ export class VvppManager {
`エンジンの削除に失敗しました。エンジンのフォルダを手動で削除してください。\n${deletingEngineDir}\nエラー内容: ${errorToMessage(e)}`,
);
} else {
log.error("Failed to rename engine directory: ", e, ", retrying");
log.error("Failed to delete engine directory: ", e, ", retrying");
await new Promise((resolve) => setTimeout(resolve, 1000));
}
}
Expand Down

0 comments on commit 9a6bb5c

Please sign in to comment.