diff options
-rwxr-xr-x | prepare-videochat.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prepare-videochat.sh b/prepare-videochat.sh index 1a4475e..ec3c24e 100755 --- a/prepare-videochat.sh +++ b/prepare-videochat.sh @@ -145,7 +145,7 @@ AUDIO_CODEC=opus has_kernel_module() { # Loads module if it is not yet loaded MODULE="$1" - if lsmod | grep "$MODULE" &> /dev/null ; then + if lsmod | grep "$MODULE" >/dev/null 2>/dev/null; then # echo "$MODULE is loaded! Do nothnig." : else |