From 17820ec23f9be696cc5d0880c36aa4c644c67bf0 Mon Sep 17 00:00:00 2001 From: Abhishek Agarwal Date: Fri, 15 Feb 2019 00:23:13 +0530 Subject: [PATCH] lib: converted element to lowercase in tty.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Converted the first element "Eterm" in TERM_ENVS array to "eterm" PR-URL: https://github.com/nodejs/node/pull/26121 Fixes: https://github.com/nodejs/node/issues/26077 Reviewed-By: Colin Ihrig Reviewed-By: Richard Lau Reviewed-By: Anto Aravinth Reviewed-By: Weijia Wang Reviewed-By: Yuta Hiroto Reviewed-By: Luigi Pinca Reviewed-By: James M Snell Reviewed-By: Сковорода Никита Андреевич Reviewed-By: Minwoo Jung --- lib/internal/tty.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/tty.js b/lib/internal/tty.js index 1e60909f66a..ea0bea4bfac 100644 --- a/lib/internal/tty.js +++ b/lib/internal/tty.js @@ -37,7 +37,7 @@ const COLORS_16m = 24; // distribution of this file, with or without modification, are permitted // provided the copyright notice and this notice are preserved. const TERM_ENVS = [ - 'Eterm', + 'eterm', 'cons25', 'console', 'cygwin',