Skip to content

Commit

Permalink
fix angle commit check
Browse files Browse the repository at this point in the history
  • Loading branch information
martinfouilleul committed Oct 31, 2024
1 parent e7dbfcb commit e7938a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ def check_angle():
with pushd("build/angle.out"):
with open("angle.json", "r") as f:
sums = json.loads(f.read())
if 'commit' not in sums or 'sum' not in sums:
if 'commit' not in sums:
messages = ["malformed build/angle.out/angle.json"]
up_to_date = False
elif sums['commit'] != ANGLE_COMMIT:
Expand Down

0 comments on commit e7938a8

Please sign in to comment.