Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update link to wiki in indent_common.sh. #13594

Merged
merged 1 commit into from
Apr 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions contrib/utilities/indent_common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ checks() {
echo "invalid author '$name' without firstname and lastname"
echo ""
echo "hint: for possible solutions, consult the webpage:"
echo " https://github.com/dealii/dealii/wiki/Indentation#commit-authorship"
echo " https://github.com/dealii/dealii/wiki/Commit-authorship"
exit 2
fi
done || exit 2
Expand All @@ -99,14 +99,14 @@ checks() {
echo "invalid email '$email'"
echo ""
echo "hint: for possible solutions, consult the webpage:"
echo " https://github.com/dealii/dealii/wiki/Indentation#commit-authorship"
echo " https://github.com/dealii/dealii/wiki/Commit-authorship"
exit 3
fi
if ! echo "$email" | grep -q -v -e "\.local$"; then
echo "invalid email '$email'"
echo ""
echo "hint: for possible solutions, consult the webpage:"
echo " https://github.com/dealii/dealii/wiki/Indentation#commit-authorship"
echo " https://github.com/dealii/dealii/wiki/Commit-authorship"
exit 3
fi
done || exit 3
Expand Down