From 8eb64e6895a29561b928598298fdea76db88c861 Mon Sep 17 00:00:00 2001 From: Simon Butcher Date: Fri, 6 Mar 2020 14:50:49 +0000 Subject: [PATCH] Fix output_env.sh for varying pylint3 output `pylint3 --version` will output to stderr the status of the config file it's using. This can be "No config file found" or "Using config file" or nothing. This means the pylint version may or may not be on the first line. Therefore this commit changes the filters on the pylint3 version output to first strip out the config line, and then to select only the pylint line. Signed-off-by: Simon Butcher --- scripts/output_env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/output_env.sh b/scripts/output_env.sh index a1323c7f9..335ccdf31 100755 --- a/scripts/output_env.sh +++ b/scripts/output_env.sh @@ -105,7 +105,7 @@ echo print_version "python" "--version" "" "head -n 1" echo -print_version "pylint3" "--version" "" "head -n 2" "tail -n 1" +print_version "pylint3" "--version" "" "sed /^.*config/d" "grep pylint" echo : ${OPENSSL:=openssl}