Fix ls command not including path

Signed-off-by: William Brawner <me@wbrawner.com>
This commit is contained in:
William Brawner 2019-12-30 14:27:36 -06:00
parent 1330d3b77d
commit 5c1487694f

2
ls
View file

@ -2,5 +2,5 @@
source "$(dirname "$0")/pre-script"
for repo in $(/usr/bin/find -maxdepth 2 -type d -name "*.git"); do /usr/bin/basename $repo .git; done | sort
for repo in $(/usr/bin/find -maxdepth 2 -type d -name "*.git"); do echo $repo | cut -c3- | rev | cut -c5- | rev; done | sort