Fix ls command not including path
Signed-off-by: William Brawner <me@wbrawner.com>
This commit is contained in:
parent
1330d3b77d
commit
5c1487694f
1 changed files with 1 additions and 1 deletions
2
ls
2
ls
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue