Skip to content

Commit

Permalink
use abspath for tracking path
Browse files Browse the repository at this point in the history
  • Loading branch information
IanButterworth committed Nov 13, 2023
1 parent 1739c4a commit 0f7e54f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ static void jl_resolve_sysimg_location(JL_IMAGE_SEARCH rel)
if (jl_options.output_code_coverage)
jl_options.output_code_coverage = absformat(jl_options.output_code_coverage);
if (jl_options.tracked_path)
jl_options.tracked_path = absformat(jl_options.tracked_path);
jl_options.tracked_path = abspath(jl_options.tracked_path, 0);

const char **cmdp = jl_options.cmds;
if (cmdp) {
Expand Down

0 comments on commit 0f7e54f

Please sign in to comment.