From 7de53dc6b8351505250e48a5e4eb93ec03f4c43a Mon Sep 17 00:00:00 2001 From: light7734 Date: Tue, 15 Jul 2025 16:03:00 +0330 Subject: [PATCH] fix: typo in .drone.yml --- .drone.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 03b6ba8..6d96aa3 100644 --- a/.drone.yml +++ b/.drone.yml @@ -17,7 +17,6 @@ steps: - | set -e clang-format --version - has_fomatting_issues=0 find ./modules -name '*.?pp' | while read -r file; do @@ -28,7 +27,7 @@ steps: fi done - if [ "$has_errors" -eq 0 ]; then + if [ "$has_fomatting_issues" -eq 0 ]; then echo "✅ All files are properly formatted! Well done! ^~^" fi