You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
421 B
13 lines
421 B
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "Updating nitter..."
|
|
./build.updaterepo.sh https://github.com/zedeus/nitter.git nitter
|
|
echo "Updating bibliogram..."
|
|
./build.updaterepo.sh https://git.sr.ht/~cadence/bibliogram bibliogram
|
|
echo "Updating omgur..."
|
|
./build.updaterepo.sh https://git.geraldwu.com/gerald/omgur.git omgur
|
|
echo "Updating invidious..."
|
|
./build.updaterepo.sh https://github.com/iv-org/invidious.git invidious
|
|
echo "Done."
|
|
|