diff --git a/README.txt b/README.txt index f45f502..04599c7 100644 --- a/README.txt +++ b/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 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. + diff --git a/make.sh b/make.sh index b15641b..e48f82d 100644 --- a/make.sh +++ b/make.sh @@ -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"