Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.24.0/check_copyright.sh
2025-05-18 13:04:45 +08:00

17 lines
489 B
Bash

#!/bin/bash
# Copyright (c) 2022-2024, Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
REF="$1"
export YEAR=$(date +%Y)
REPLARG="-S 1024"
if !(xargs $REPLARG 2>/dev/null); then
# xargs doesn't support -S argument, so do not use it
REPLARG=""
fi
# List files with Copyright whether they have up-to-date date.
git diff --name-only "$REF" | xargs -I {} $REPLARG bash -c 'test -f {} && (grep -q "Copyright.*$YEAR" {} || (grep -q Copyright {} && echo {}))' | ( ! grep ^ )