Skip to content

Commit

Permalink
Merge pull request #1472 from pbalcer/urtrace-env-clone
Browse files Browse the repository at this point in the history
[TOOLS] fix urtrace not preserving env variables
  • Loading branch information
pbalcer committed Mar 26, 2024
2 parents 2550f6b + 4249f1b commit ed949ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/urtrace/urtrace.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def get_dynamic_library_name(name):
config = vars(args)
if args.debug:
print(config)
env = dict()
env = os.environ.copy()

collector_args = ""
if args.print_begin:
Expand Down

0 comments on commit ed949ec

Please sign in to comment.