Skip to content

Commit

Permalink
add discord presence
Browse files Browse the repository at this point in the history
  • Loading branch information
psifertex committed Jan 9, 2024
1 parent 40768eb commit 7778086
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions listing.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
[
{
"name": "psifertex/discordpresence",
"auto_update": true
},
{
"name": "dzervas/frinja",
"auto_update": true
Expand Down
8 changes: 6 additions & 2 deletions mirror-all-plugins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ then
fi
for plugin in `grep '"name"' listing.json|awk -F\" '{print $4}'`
do
git -C $DOWNLOAD_DIR clone https://github.com/$plugin
pushd $DOWNLOAD_DIR
dirname=`echo $plugin|sed 's/.*\///g'`
if [ ! -d $DOWNLOAD_DIR/$dirname ]
then
git -C $DOWNLOAD_DIR clone https://github.com/$plugin
fi
pushd $DOWNLOAD_DIR/$dirname
git submodule update --init --recursive
popd
done

0 comments on commit 7778086

Please sign in to comment.