Updated copyright script to allow exclusions of codegen and tools

This commit is contained in:
2025-07-20 16:36:21 +03:00
parent 57dc684b89
commit 3f0128d71b
2 changed files with 18 additions and 17 deletions

View File

@@ -18,6 +18,9 @@ HEADER="// Eko: A terminal based social media platform
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>."
# List of paths to exclude (files or directories)
EXCLUDE_PATHS=("internal/data" "tools/test_rate_limit.go")
# Check if .go files exist recursively
if ! find . -type f -name "*.go" | grep -q .; then
echo "No .go files found in the current directory or subdirectories."
@@ -27,8 +30,22 @@ fi
# Get current year
CURRENT_YEAR=$(date +%Y)
# Apply header to all .go files recursively
# Apply header to all .go files recursively, excluding specified paths
find . -type f -name "*.go" | while IFS= read -r file; do
# Check if file or its parent directories are in EXCLUDE_PATHS
skip=false
for exclude in "${EXCLUDE_PATHS[@]}"; do
if [[ "$file" == "./$exclude" || "$file" == ./"$exclude"/* ]]; then
skip=true
break
fi
done
if [ "$skip" = true ]; then
echo "Skipped $file (in excluded path)"
continue
fi
# Skip if file already has Copyright in the first 10 lines
if ! head -n 10 "$file" | grep -q "Copyright"; then
# Prepend header with a single newline, preserving original content

View File

@@ -1,19 +1,3 @@
// Eko: A terminal based social media platform
// Copyright (C) 2025 Kyren223
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published
// by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package main
import (