Skip to content

Commit

Permalink
Merge pull request #301 from zowe/bugfix/v2/node-not-found-warning
Browse files Browse the repository at this point in the history
Fix node warning
  • Loading branch information
1000TurquoisePogs authored Apr 29, 2024
2 parents 37e5822 + 70da6c4 commit 00ad121
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to the Zlux App Server package will be documented in this file.

## v2.16.0
- Bugfix: Removed message saying node not found prior to discovery of node. Now, you will only get an error message if node is not found after lookup in NODE_HOME.

## v2.14.0
- Enhancement: Updated schema to specify multiple discovery servers.

Expand Down
2 changes: 1 addition & 1 deletion bin/validate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# Copyright Contributors to the Zowe Project.

type node
result=$(type node)
if [ "$?" -ne "0" ]; then
if [ -e "${NODE_HOME}/bin/node" ]; then
echo "Node found in NODE_HOME"
Expand Down

0 comments on commit 00ad121

Please sign in to comment.