Skip to content

Commit

Permalink
Fixing typo in string literal
Browse files Browse the repository at this point in the history
  • Loading branch information
colincornaby committed Jul 18, 2024
1 parent f956772 commit 8e14b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion urumanifest/commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def _hash_asset(args: Tuple[Path, Path, bool]) -> Tuple[Path, str, int]:
bundle_name = source_path.stem
# Guess the executable path - we could get the exact name if we could unpack the Info.plist
# in a cross platform way.
source_path = source_path.joinpath("Contents", MacOS", bundle_name)
source_path = source_path.joinpath("Contents", "MacOS", bundle_name)
with source_path.open("rb") as in_stream:
_io_loop(in_stream, h.update)
return server_path, h.hexdigest(), source_path.stat().st_size
Expand Down

0 comments on commit 8e14b72

Please sign in to comment.