소스 검색

Explicitly sort modules (by C locale)

Alois Mahdal 9 년 전
부모
커밋
6f23cfc46e
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2
    1
      src/bin/saturnin.skel

+ 2
- 1
src/bin/saturnin.skel 파일 보기

@@ -11,7 +11,8 @@ inigrep_modules() {
11 11
     # Find existing modules (ini.d sub-folders)
12 12
     #
13 13
     test -d "$1" || return 0
14
-    find -L "$1" -mindepth 1 -maxdepth 1 -type d
14
+    find -L "$1" -mindepth 1 -maxdepth 1 -type d \
15
+      | LC_ALL=C sort
15 16
 }
16 17
 
17 18
 inigrep_paths() {