소스 검색

Exceptions

Bob Mottram 8 년 전
부모
커밋
22a7378852
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      tests/check-gids.sh

+ 1
- 1
tests/check-gids.sh 파일 보기

@@ -1,5 +1,5 @@
1 1
 #!/bin/bash
2 2
 
3
-if [ $(pwck -r | grep "no group" | wc -l) -ne 0 ];then
3
+if [ $(pwck -r | sed '/nonexist/d' | sed '/\/home\//d' | sed '/\/run\//d' | sed '/no changes/d' | grep "no group" | wc -l) -ne 0 ];then
4 4
         exit 1
5 5
 fi