Skip to content

Commit

Permalink
fix: doctor.ts type error
Browse files Browse the repository at this point in the history
  • Loading branch information
rolljee committed Dec 11, 2024
1 parent faf7f2d commit d2122ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/app/doctor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export default class AppDoctor extends Kommand {
);
}
this.logOk(`NodeJS Building version: ${process.version}`);
if (nodeVersion.result !== process.version) {
if (nodeVersion.result as any !== process.version) {
this.logKo(
"=> Kuzzle node version is different from the build node version"
);
Expand Down

0 comments on commit d2122ce

Please sign in to comment.