mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-25 03:52:09 +03:00
13 lines
268 B
Bash
13 lines
268 B
Bash
|
#!/bin/bash
|
||
|
set -eu
|
||
|
|
||
|
# Check that Rust source files contains Orange Copyright
|
||
|
find packages -name "*.rs" | while read -r rust_file; do
|
||
|
if ! grep -q "Copyright (C) 2022 Orange" "$rust_file"; then
|
||
|
echo "Missing copyright in $rust_file"
|
||
|
exit 1
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
|