aboutsummaryrefslogtreecommitdiff
path: root/home/update.sh
diff options
context:
space:
mode:
authorMitch Riedstra <mitch@riedstra.us>2020-09-13 16:40:54 -0400
committerMitch Riedstra <mitch@riedstra.us>2020-09-13 16:40:54 -0400
commit5debb8c4b7afeb531b1584595343390e4f07b113 (patch)
tree962a4046ad9436c0c5aa838ba075ea472fb1090e /home/update.sh
parent578b04e3f380cfd674cd545f6a4d673b4e046bf5 (diff)
downloadalpine-cgit-5debb8c4b7afeb531b1584595343390e4f07b113.tar.gz
alpine-cgit-5debb8c4b7afeb531b1584595343390e4f07b113.tar.xz
Do not run setup multiple times in a container's life. Also update scripts
Diffstat (limited to 'home/update.sh')
-rwxr-xr-xhome/update.sh16
1 files changed, 6 insertions, 10 deletions
diff --git a/home/update.sh b/home/update.sh
index b6a0412..e494390 100755
--- a/home/update.sh
+++ b/home/update.sh
@@ -2,13 +2,9 @@
set -e
set -x
-repos="$(find $HOME -type d -iname '*.git')"
-
-IFS="
-"
-
-for repo in $repos ; do
- cd $repo
- git update-server-info
-done
-
+#shellcheck disable=SC2086
+$HOME/list.sh \
+ | while read -r repo ; do
+ cd "$repo"
+ git repack
+ done