Skip to content

Commit 6a572f1

Browse files
committed
Revert
1 parent 13b2594 commit 6a572f1

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

Diff for: src/custom_apps.py

-9
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,3 @@ def _curl_download_commands(self):
7070
yield ["curl", "-L", url, "-u", auth, "-o", file_path]
7171
else:
7272
yield ["curl", "-L", url, "-o", file_path]
73-
74-
def validate_info_json_files(self):
75-
"""Validate all info files to make sure there's no localhost url set,
76-
as we don't want to build the binaries without the ZIM content
77-
"""
78-
for file in self.info_files:
79-
content = file.read_text()
80-
assert "http://localhost" not in content, "The file '{}' cannot contain 'http://localhost'".format(
81-
file)

0 commit comments

Comments
 (0)