From ee571b2ab8eb6d31342e0ae24d35efa45b48d506 Mon Sep 17 00:00:00 2001 From: Christoph Zwerschke Date: Mon, 29 Apr 2024 15:13:08 +0000 Subject: [PATCH] Rename license checker --- .github/workflows/static_code_analysis.yaml | 2 +- .template/static_files.txt | 2 +- scripts/{license_checker.py => check_license.py} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename scripts/{license_checker.py => check_license.py} (100%) diff --git a/.github/workflows/static_code_analysis.yaml b/.github/workflows/static_code_analysis.yaml index b9f61d2..052dfdc 100644 --- a/.github/workflows/static_code_analysis.yaml +++ b/.github/workflows/static_code_analysis.yaml @@ -36,4 +36,4 @@ jobs: - name: Check license header and file id: license-checker run: | - ./scripts/license_checker.py + ./scripts/check_license.py diff --git a/.template/static_files.txt b/.template/static_files.txt index 46e46bf..1efe4d5 100644 --- a/.template/static_files.txt +++ b/.template/static_files.txt @@ -18,7 +18,7 @@ scripts/script_utils/cli.py scripts/__init__.py scripts/update_all.py -scripts/license_checker.py +scripts/check_license.py scripts/get_package_name.py scripts/update_config_docs.py scripts/update_template_files.py diff --git a/scripts/license_checker.py b/scripts/check_license.py similarity index 100% rename from scripts/license_checker.py rename to scripts/check_license.py