updated to sort the list of directories.
authorChris Koeritz <fred@gruntose.com>
Tue, 10 Sep 2013 12:22:38 +0000 (08:22 -0400)
committerChris Koeritz <fred@gruntose.com>
Tue, 10 Sep 2013 12:22:38 +0000 (08:22 -0400)
scripts/rev_control/version_control.sh

index a238cae2480d7cc3e814e7486c2a529ae62047e9..86cfaeffb710e9db84524279eb88903246a5d4f7 100644 (file)
@@ -251,7 +251,10 @@ function generate_rev_ctrl_filelist()
   find $dirhere -maxdepth 5 -type d -iname ".git" -exec echo {}/.. ';' >>$tempfile
   # CVS is not well behaved like git and (now) svn, and we seldom use it anymore.
   popd &>/dev/null
-  echo "$tempfile"
+  local sortfile=$(mktemp /tmp/zz_rev_checkin_sort.XXXXXX)
+  sort <"$tempfile" >"$sortfile"
+  \rm "$tempfile"
+  echo "$sortfile"
 }
 
 # iterates across a list of directories contained in a file (first parameter).