Skip to content

Commit

Permalink
point Maixpy to master
Browse files Browse the repository at this point in the history
sort reproducibility hashes
  • Loading branch information
odudex committed Sep 25, 2024
1 parent 87db187 commit c719dbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion firmware/MaixPy
Submodule MaixPy updated 0 files
2 changes: 1 addition & 1 deletion reproducibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def calculate_sha256(file_path):
def find_bin_files(root_dir, extension=".bin"):
"""Find .bin files in root directory and its subdirectories."""
print(f"\nDevice: SHA256 of {extension} file")
for dirpath, _, filenames in os.walk(root_dir):
for dirpath, _, filenames in sorted(os.walk(root_dir)):
for filename in filenames:
if filename.endswith(extension):
file_path = os.path.join(dirpath, filename)
Expand Down

0 comments on commit c719dbb

Please sign in to comment.