Skip to content

Commit

Permalink
Merge pull request #1031 from kelunik/node-version-warning
Browse files Browse the repository at this point in the history
Add warning if determination of node version fails
  • Loading branch information
eirslett committed Jun 11, 2023
2 parents ec9f805 + 0f61085 commit f022735
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ private boolean nodeIsAlreadyInstalled() {
return false;
}
} catch (ProcessExecutionException e) {
this.logger.warn("Unable to determine current node version: {}", e.getMessage());
return false;
}
}
Expand Down

0 comments on commit f022735

Please sign in to comment.