This commit is contained in:
Jordan Bancino 2022-07-29 16:06:01 -04:00
parent fa0bd9a7c6
commit bf4e92e12f
2 changed files with 14 additions and 3 deletions

View file

@ -1,6 +1,15 @@
Telodendria
===========
=======================================================
|_ _|__| | ___ __| | ___ _ __ __| |_ __(_) __ _
| |/ _ \ |/ _ \ / _` |/ _ \ '_ \ / _` | '__| |/ _` |
| | __/ | (_) | (_| | __/ | | | (_| | | | | (_| |
|_|\___|_|\___/ \__,_|\___|_| |_|\__,_|_| |_|\__,_|
=======================================================
Copyright (C) 2022 Jordan Bancino <@jordan:bancino.net>
This is the source code for Telodendria, a Matrix homeserver written
in C. All of the documentation is available at https://telodendria.io,
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.

View file

@ -152,7 +152,9 @@ recipe_patch() {
echo "Date: $(date)"
echo "Subject: "
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"
"$EDITOR" "$PATCH_FILE"