forked from lda/telodendria
Accept #16
This commit is contained in:
parent
fa0bd9a7c6
commit
bf4e92e12f
2 changed files with 14 additions and 3 deletions
13
README.txt
13
README.txt
|
@ -1,6 +1,15 @@
|
||||||
Telodendria
|
=======================================================
|
||||||
===========
|
|_ _|__| | ___ __| | ___ _ __ __| |_ __(_) __ _
|
||||||
|
| |/ _ \ |/ _ \ / _` |/ _ \ '_ \ / _` | '__| |/ _` |
|
||||||
|
| | __/ | (_) | (_| | __/ | | | (_| | | | | (_| |
|
||||||
|
|_|\___|_|\___/ \__,_|\___|_| |_|\__,_|_| |_|\__,_|
|
||||||
|
=======================================================
|
||||||
|
Copyright (C) 2022 Jordan Bancino <@jordan:bancino.net>
|
||||||
|
|
||||||
This is the source code for Telodendria, a Matrix homeserver written
|
This is the source code for Telodendria, a Matrix homeserver written
|
||||||
in C. All of the documentation is available at https://telodendria.io,
|
in C. All of the documentation is available at https://telodendria.io,
|
||||||
or in site/index.html.
|
or in site/index.html.
|
||||||
|
|
||||||
|
If information is missing from those documents, please feel free to
|
||||||
|
reach out to #telodendria-general:bancino.net on Matrix.
|
||||||
|
|
||||||
|
|
4
make.sh
4
make.sh
|
@ -152,7 +152,9 @@ recipe_patch() {
|
||||||
echo "Date: $(date)"
|
echo "Date: $(date)"
|
||||||
echo "Subject: "
|
echo "Subject: "
|
||||||
echo
|
echo
|
||||||
cvs diff -uNp $PATCH | grep -v '^\? '
|
# Do a quiet diff that doesn't have any untracked files
|
||||||
|
# listed in it.
|
||||||
|
cvs -q diff -uNp $PATCH | grep -v '^\? '
|
||||||
) > "$PATCH_FILE"
|
) > "$PATCH_FILE"
|
||||||
|
|
||||||
"$EDITOR" "$PATCH_FILE"
|
"$EDITOR" "$PATCH_FILE"
|
||||||
|
|
Loading…
Reference in a new issue