From 5e8eb1abe6e8879d1f7ed2414cb35c2676d9d134 Mon Sep 17 00:00:00 2001 From: Unai Martinez-Corral Date: Thu, 18 Aug 2022 04:00:55 +0200 Subject: [PATCH] ci: mv check_*.sh scripts/ Signed-off-by: Unai Martinez-Corral --- .github/{ => scripts}/check_license.sh | 0 .github/{ => scripts}/check_python_scripts.sh | 0 Makefile | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename .github/{ => scripts}/check_license.sh (100%) rename .github/{ => scripts}/check_python_scripts.sh (100%) diff --git a/.github/check_license.sh b/.github/scripts/check_license.sh similarity index 100% rename from .github/check_license.sh rename to .github/scripts/check_license.sh diff --git a/.github/check_python_scripts.sh b/.github/scripts/check_python_scripts.sh similarity index 100% rename from .github/check_python_scripts.sh rename to .github/scripts/check_python_scripts.sh diff --git a/Makefile b/Makefile index a3310949..ae1d89e4 100644 --- a/Makefile +++ b/Makefile @@ -128,8 +128,8 @@ format: format-cpp format-docs format-py format-tcl format-trailing-ws .PHONY: format format-cpp format-py format-tcl format-trailing-ws check-license: - @./.github/check_license.sh - @./.github/check_python_scripts.sh + @./.github/scripts/check_license.sh + @./.github/scripts/check_python_scripts.sh .PHONY: check-license