example.sh: fix: sort list (regression from simplifying the script) - stagit-gopher - A git gopher frontend. (mirror)
 (HTM) git clone git://bitreich.org/stagit-gopher/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/stagit-gopher/
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Tags
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 0bc47da0f7b66614cdf499755ceca1dc13ff91cd
 (DIR) parent ad4043383956fce0949def38a830d8eb61fa0565
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Fri, 29 Apr 2016 21:52:29 +0200
       
       example.sh: fix: sort list (regression from simplifying the script)
       
       Diffstat:
         M example.sh                          |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/example.sh b/example.sh
       @@ -17,11 +17,11 @@ curdir=$(pwd)
        
        # make index.
        cd "${reposdir}"
       -find . -maxdepth 1 -type d | grep -v "^.$" | xargs stagit-index > "${curdir}/index.html"
       +find . -maxdepth 1 -type d | grep -v "^.$" | sort | xargs stagit-index > "${curdir}/index.html"
        
        # make files per repo.
        cd "${reposdir}"
       -find . -maxdepth 1 -type d | grep -v "^.$" | while read -r dir; do
       +find . -maxdepth 1 -type d | grep -v "^.$" | sort | while read -r dir; do
                d=$(basename "${dir}")
                printf "%s... " "${d}"