Skip to content

Commit

Permalink
Cast path object to str in run postinstall scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
larsevj committed Jun 5, 2024
1 parent 0c6e449 commit c1ca2e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion komodo/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def run_post_installation_scripts_if_set(
) -> None:
if postinst:
timing_func = profile_time("Running post-install scripts")
timing_func(shell([postinst, release_path]))
timing_func(shell([postinst, str(release_path)]))


@profile_time("Compile python bytecode files")
Expand Down

0 comments on commit c1ca2e6

Please sign in to comment.