sync with OpenBSD -current
This commit is contained in:
parent
b5b25afdb8
commit
2c72e27ed2
147 changed files with 41128 additions and 10 deletions
18
lib/libva/.github/workflows/style.sh
vendored
Normal file
18
lib/libva/.github/workflows/style.sh
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
modified_lines=$(git status --short -uno | wc -l)
|
||||
(( modified_lines == 0 )) && exit 0
|
||||
|
||||
echo >&2
|
||||
echo >&2 "ERROR: Style changes detected"
|
||||
echo >&2
|
||||
|
||||
git diff
|
||||
|
||||
echo >&2
|
||||
echo >&2 "ERROR: Squash the above changes as needed"
|
||||
echo >&2
|
||||
|
||||
exit 1
|
Loading…
Add table
Add a link
Reference in a new issue