Просмотр исходного кода

bash-completion: silent cmake -D lookup

The completion for -D tries to read the cache via 'cmake -LA -N', but this
prints a warning.  Silent the lookup by redirecting this warning to null.
Felix Schwitzer 6 лет назад
Родитель
Сommit
64aeb520ca
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      Auxiliary/bash-completion/cmake

+ 2 - 2
Auxiliary/bash-completion/cmake

@@ -76,8 +76,8 @@ _cmake()
                 compopt -o nospace
             else
             # complete variable names
-                COMPREPLY=( $( compgen -W '$( cmake -LA -N | tail -n +2 |
-                    cut -f1 -d: )' -P "$prefix" -- "$cur" ) )
+                COMPREPLY=( $( compgen -W '$( cmake -LA -N 2>/dev/null |
+                    tail -n +2 | cut -f1 -d: )' -P "$prefix" -- "$cur" ) )
                 compopt -o nospace
             fi
             return