We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Maybe something like
shopt -s globstar for source in ./src/**/*.rs; do echo "Checking $source for copyright statement" should_exit="false" if ! head "$source" | grep "// Copyright 2023 Raven Industries inc"; then echo "$source missing copyright statement" should_exit="true" fi if [[ "$should_exit" = "true" ]]; then echo "Missing copyright statement(s) ..." exit 1 fi done
but done in a way that contributors can run on their own systems? Maybe a tool to insert them if they're missing?
See 4045ceb for why there's a copyright statement.
The text was updated successfully, but these errors were encountered:
Add copyright check to CI/CD pipeline
3f0f127
Closes #35.
Successfully merging a pull request may close this issue.
Maybe something like
but done in a way that contributors can run on their own systems? Maybe a tool to insert them if they're missing?
See 4045ceb for why there's a copyright statement.
The text was updated successfully, but these errors were encountered: