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.
12 lines
320 B
12 lines
320 B
3 years ago
|
#!/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 "Done."
|