11 lines
204 B
Bash
Executable File
11 lines
204 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# blob:summary=Update user-installed git themes
|
|
|
|
mapfile -t themes < <(blob-theme-extras)
|
|
|
|
for theme in "${themes[@]}"; do
|
|
echo "Updating: $(basename "$theme")"
|
|
git -C "$theme" pull
|
|
done
|