projects
/
feisty_meow.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
08b25cb
)
updated to sort the list of directories.
author
Chris Koeritz
<fred@gruntose.com>
Tue, 10 Sep 2013 12:22:38 +0000
(08:22 -0400)
committer
Chris Koeritz
<fred@gruntose.com>
Tue, 10 Sep 2013 12:22:38 +0000
(08:22 -0400)
scripts/rev_control/version_control.sh
patch
|
blob
|
history
diff --git
a/scripts/rev_control/version_control.sh
b/scripts/rev_control/version_control.sh
index a238cae2480d7cc3e814e7486c2a529ae62047e9..86cfaeffb710e9db84524279eb88903246a5d4f7 100644
(file)
--- a/
scripts/rev_control/version_control.sh
+++ b/
scripts/rev_control/version_control.sh
@@
-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).