Skip to content
Snippets Groups Projects
Commit 0b4c7470 authored by Leroy Rügemer's avatar Leroy Rügemer
Browse files

version bump, fix for catkin tools

add path even if no workspace markerfile to include unfinished catkin tools isolated builds in maven repositories
parent 5cc90c28
Branches
No related tags found
No related merge requests found
...@@ -24,7 +24,7 @@ def get_workspaces(environ): ...@@ -24,7 +24,7 @@ def get_workspaces(environ):
value = environ[env_name] if env_name in environ else '' value = environ[env_name] if env_name in environ else ''
paths = [path for path in value.split(os.pathsep) if path] paths = [path for path in value.split(os.pathsep) if path]
# remove non-workspace paths # remove non-workspace paths
workspaces = [path.replace(' ', '\ ') for path in paths if os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE))] workspaces = [path.replace(' ', '\ ') for path in paths]
return workspaces return workspaces
def get_environment_variable(environ, key): def get_environment_variable(environ, key):
......
<package> <package>
<name>rosjava_build_tools</name> <name>rosjava_build_tools</name>
<version>0.3.3</version> <version>0.3.4</version>
<description> <description>
Simple tools and catkin modules for rosjava development. Simple tools and catkin modules for rosjava development.
</description> </description>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment