From review of PR #81.
In src/python/src/cli_interface.py, lines like:
file_name = os.getcwd() + config["saveLocPure"] + config["name"] + f"-{view}.puml"
use string concatenation for paths. If saveLocPure doesn't start with /, this produces wrong paths (e.g. "/Users/foo" + "diagrams/" → "/Users/foodiagrams/").
Should use os.path.join() instead.
From review of PR #81.
In
src/python/src/cli_interface.py, lines like:use string concatenation for paths. If
saveLocPuredoesn't start with/, this produces wrong paths (e.g."/Users/foo" + "diagrams/"→"/Users/foodiagrams/").Should use
os.path.join()instead.