mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 07:08:10 +00:00
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 <simon.butcher@arm.com>
This commit is contained in:
parent
85c4c865db
commit
bae7328b32
1 changed files with 1 additions and 1 deletions
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue