parent
0405da2939
commit
ae627b3691
@ -1,4 +1,5 @@ |
||||
*.env |
||||
bibliogram/ |
||||
nitter/ |
||||
omgur/ |
||||
config/ |
||||
|
@ -1,17 +0,0 @@ |
||||
#!/bin/sh |
||||
|
||||
set -e |
||||
|
||||
REPO_URL=https://git.sr.ht/~cadence/bibliogram |
||||
REPO_DIR_PATH=bibliogram |
||||
|
||||
# If repo exists update, else clone it |
||||
if [ -d "$REPO_DIR_PATH" ]; then |
||||
# Save the root dir path, enter the repo, pull new changes and come back |
||||
ROOT_DIR=$(pwd) |
||||
cd "$REPO_DIR_PATH" |
||||
git pull |
||||
cd "$ROOT_DIR" |
||||
else |
||||
git clone "$REPO_URL" "$REPO_DIR_PATH" |
||||
fi |
@ -0,0 +1,11 @@ |
||||
#!/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." |
Loading…
Reference in new issue