Skip to content

Commit

Permalink
Fix updating hashes in app metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
sonicaj committed Jun 22, 2024
1 parent 2096026 commit 615a800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catalog_reader/scripts/apps_hashes.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def update_catalog_hashes(catalog_path: str) -> None:

app_config['lib_version_hash'] = hashes[lib_version]
with open(str(app_metadata_file), 'w') as f:
yaml.safe_dump(app_config)
f.write(yaml.safe_dump(app_config))

print(f'[\033[92mOK\x1B[0m]\tUpdated library hash for {app_dir.name!r} in {train_dir.name}')

Expand Down

0 comments on commit 615a800

Please sign in to comment.