diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2022-12-28 23:52:07 -0500 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2022-12-28 23:52:07 -0500 |
| commit | c5017fb5f5d5ff3d438f6a07403ac0590554a8db (patch) | |
| tree | d85d027ea1f5f273aece22868fc437e541b99be7 /home/list.sh | |
| parent | df50ddfe09ef3176972998e6aca3482da5f22427 (diff) | |
| download | alpine-cgit-c5017fb5f5d5ff3d438f6a07403ac0590554a8db.tar.gz alpine-cgit-c5017fb5f5d5ff3d438f6a07403ac0590554a8db.tar.xz | |
Update to the latest Alpine Linux. Few tweaks to scripts and entrypoint.
Diffstat (limited to 'home/list.sh')
| -rwxr-xr-x | home/list.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/home/list.sh b/home/list.sh index b3b8bd9..592a4a3 100755 --- a/home/list.sh +++ b/home/list.sh @@ -1,10 +1,9 @@ #!/bin/sh #shellcheck disable=SC2038 -find . -type f -name HEAD \ +find * -type f -name HEAD \ | xargs -n1 dirname \ | while read -r repo ; do if ! [ "$(basename "$repo")" = ".git" ] ; then echo "$repo"; fi done - |
