diff options
author | kaa <kaa@disroot.org> | 2025-09-01 22:09:12 -0700 |
---|---|---|
committer | kaa <kaa@disroot.org> | 2025-09-01 22:09:12 -0700 |
commit | 980997c3441f52a5a4f79326c86e9a93a0a35853 (patch) | |
tree | 1d0bdc3a60f2be49d336624b31c9bb9b060e3218 /lib/font/graphics/git/dl.sh | |
parent | f38b4ad8b7543b088c5c0c4018285127ad4f4680 (diff) |
Diffstat (limited to 'lib/font/graphics/git/dl.sh')
-rwxr-xr-x | lib/font/graphics/git/dl.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/font/graphics/git/dl.sh b/lib/font/graphics/git/dl.sh new file mode 100755 index 0000000..a93c134 --- /dev/null +++ b/lib/font/graphics/git/dl.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +< list sort -R | while read -r repo +do + echo "$repo" + dir="$(echo $line | sed -e "s|.*/||")" + if ! [ -d "$dir" ] + then + git clone --depth 1 "$repo" + # Disk space isn't free. + #else + # cd "$dir" + # git pull + # cd .. + fi +done |