Skip to content
Snippets Groups Projects
Commit 2b81fbdc authored by Carlos Mastalli's avatar Carlos Mastalli
Browse files

[loader] Adapted path to run internal CI as Guilhem suggested

parent 039e41e3
No related branches found
No related tags found
1 merge request!23Created robots folder and moved the description folders there, fix #15
......@@ -8,8 +8,9 @@ from pinocchio.robot_wrapper import RobotWrapper
def getModelPath(subpath, printmsg=False):
base = '../../../share/example-robot-data'
for path in [dirname(dirname(dirname(dirname(__file__)))),
dirname(dirname(dirname(__file__)))] + [join(p, base.strip('/')) for p in sys.path]:
main_dir = dirname(dirname(dirname(__file__)))
for path in [join(dirname(main_dir), 'robots'), join(main_dir, 'robots')
] + [join(p, base.strip('/')) for p in sys.path]:
if exists(join(path, subpath.strip('/'))):
if printmsg:
print("using %s as modelPath" % path)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment