Commit 719943e4 by Peter Weidenbach

sort import files to provide meta rule capabilities

parent 05a15b53
......@@ -24,7 +24,7 @@ def compile_rules(input_dir, out_file, external_variables={}):
def _create_joint_signature_file(directory, tmp_file):
all_signatures = list()
for signature_file in get_files_in_dir(directory):
for signature_file in sorted(get_files_in_dir(directory)):
with open(signature_file, 'rb') as fd:
all_signatures.append(fd.read())
with open(tmp_file.name, 'wb') as fd:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment