Skip to content

Commit 8e77e56

Browse files
committed
add shared.path_join()
1 parent 86d7330 commit 8e77e56

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/shared.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,10 @@ def git_push_changes(args, repo_path):
127127
raise QuantifyingException(f"Error during push changes: {e}", 1)
128128

129129

130+
def path_join(*paths):
131+
return os.path.abspath(os.path.realpath(os.path.join(*paths)))
132+
133+
130134
def update_readme(
131135
paths, image_path, data_source, description, section_title, args
132136
):

0 commit comments

Comments
 (0)