]> git.phdru.name Git - git-scripts.git/blob - ls-not-packed-recursive
Refactor(ls-not-pushed): Split into `-recursive` and `-repos`
[git-scripts.git] / ls-not-packed-recursive
1 #! /bin/sh
2
3 prog_dir="`dirname \"$0\"`" &&
4 count_obj=0
5 for repo_count_obj in `"$prog_dir"/run-recursive "$prog_dir"/ls-not-packed`; do
6    count_obj=`expr $count_obj + $repo_count_obj`
7 done
8 if [ $count_obj -ge 1 ]; then pwd; fi