Skip to content

Commit

Permalink
Use directory structure instead of dotpath
Browse files Browse the repository at this point in the history
  • Loading branch information
kLabz committed Jan 21, 2025
1 parent 5be94b1 commit df5a27e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/context/common.ml
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ class file_keys = object(self)

method generate_virtual mpath step =
incr virtual_counter;
Printf.sprintf "%s/file_%i_%i" (s_type_path mpath) step !virtual_counter
Printf.sprintf "%s/%s_%i_%i" (ExtLib.String.join "/" (fst mpath)) (snd mpath) step !virtual_counter

end

Expand Down

0 comments on commit df5a27e

Please sign in to comment.