mirror of
https://github.com/CISOfy/lynis.git
synced 2025-04-08 17:15:25 +02:00
Fix error printed to screen when run from shell without "command" (#601)
Issue is present on busybox ash shell without "command" builtin. Fix issue by redirecting errors to /dev/null
This commit is contained in:
parent
0f32d2725c
commit
d024d5296e
2
lynis
2
lynis
@ -110,7 +110,7 @@ Make sure to execute ${PROGRAM_NAME} from untarred directory or check your insta
|
||||
fi
|
||||
|
||||
# Auto detection of language based on locale (first two characters). Set to English when nothing found.
|
||||
if [ -x "$(command -v locale)" ]; then
|
||||
if [ -x "$(command -v locale 2> /dev/null)" ]; then
|
||||
LANGUAGE=$(locale | egrep "^LANG=" | cut -d= -f2 | cut -d_ -f1 | egrep "^[a-z]{2}$")
|
||||
fi
|
||||
if [ -z "${LANGUAGE}" ]; then
|
||||
|
Loading…
x
Reference in New Issue
Block a user