mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-03-02 00:16:47 +01:00
Fix: Convert a single string in the array to a list array (#2293)
This commit is contained in:
parent
32d575b4e9
commit
7773df7443
5
.github/scripts/check_language_properties.py
vendored
5
.github/scripts/check_language_properties.py
vendored
@ -123,8 +123,10 @@ def check_for_missing_keys(reference_file, file_list, branch):
|
||||
|
||||
|
||||
def read_properties(file_path):
|
||||
if (os.path.isfile(file_path) and os.path.exists(file_path)):
|
||||
with open(file_path, "r", encoding="utf-8") as file:
|
||||
return file.read().splitlines()
|
||||
return [""]
|
||||
|
||||
|
||||
def check_for_differences(reference_file, file_list, branch, actor):
|
||||
@ -140,10 +142,11 @@ def check_for_differences(reference_file, file_list, branch, actor):
|
||||
|
||||
only_reference_file = True
|
||||
|
||||
for file_path in file_list:
|
||||
for file_path in file_list[0].split():
|
||||
basename_current_file = os.path.basename(branch + "/" + file_path)
|
||||
if (
|
||||
basename_current_file == basename_reference_file
|
||||
or not file_path.startswith("src/main/resources/messages_")
|
||||
or not file_path.endswith(".properties")
|
||||
or not basename_current_file.startswith("messages_")
|
||||
):
|
||||
|
Loading…
Reference in New Issue
Block a user