Merge pull request #10730 from akallabeth/tz-gen-fix

Tz gen fix
This commit is contained in:
akallabeth 2024-10-12 08:54:47 +02:00 committed by GitHub
commit 91da1e7473
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 1 deletions

View File

@ -33,6 +33,7 @@ jobs:
run: build\Release\tzextract.exe winpr\libwinpr\timezone
- name: Format code
run: |
clang-format -i --style=file:.clang-format winpr/libwinpr/timezone/WindowsZones.c
clang-format -i --style=file:.clang-format winpr/libwinpr/timezone/TimeZoneNameMap.c
clang-format -i --style=file:.clang-format winpr/libwinpr/timezone/TimeZoneNameMap.json
- name: Create Pull Request

View File

@ -63,7 +63,6 @@ internal class Program
fs.WriteLine("static const size_t " + fname + "Size = ARRAYSIZE(" + fname + ");");
fs.WriteLine("");
fs.WriteLine("// clang-format on");
fs.WriteLine("");
}
return true;
}