From f69e59daae43d60c25e70f6620a212b152aabe52 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Fri, 20 Jan 2017 10:37:56 -0500 Subject: [PATCH] src: add NODE_NO_WARNINGS to --help output MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit adds a description of the NODE_NO_WARNINGS environment variable to the --help output. This was overlooked in 49902124a9d697e441dbf724aa6b26bd98f75dd0. Refs: https://github.com/nodejs/node/pull/10842 PR-URL: https://github.com/nodejs/node/pull/10918 Reviewed-By: Michaƫl Zasso Reviewed-By: Sam Roberts Reviewed-By: Italo A. Casas Reviewed-By: Roman Reiss --- src/node.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/node.cc b/src/node.cc index 721c4d097a26c2..609f61a4b9aa88 100644 --- a/src/node.cc +++ b/src/node.cc @@ -3536,6 +3536,7 @@ static void PrintHelp() { " (will extend linked-in data)\n" #endif #endif + "NODE_NO_WARNINGS set to 1 to silence process warnings\n" #ifdef _WIN32 "NODE_PATH ';'-separated list of directories\n" #else