duckietown / hatchery

🐣 An IDE for building ROS applications
http://www.ros.org/
Other
8 stars 1 forks source link

Path separator is incorrect #18

Closed airfield20 closed 5 years ago

airfield20 commented 5 years ago

Path separator is in this file RosPathTools.kt defined on line 51 and used on line 201 is incorrect for clion 2019.1

This is the output when I click run launch file:

sh -c "echo 'ROS workspace directory: /home/aaron/Humanoid/humanoid_ws' &&
      cd /home/aaron/Humanoid/humanoid_ws &&
      catkin_make &&
      echo 'Sourcing /home/aaron/Humanoid/humanoid_ws:devel:setup.sh' &&
      . /home/aaron/Humanoid/humanoid_ws:devel:setup.sh &&
      echo 'Available nodes:' &&
      rosnode list &&
      echo 'Available topics:' && ...

which eventually leads to this error:

Base path: /home/aaron/Humanoid/humanoid_ws
Source space: /home/aaron/Humanoid/humanoid_ws/src
Build space: /home/aaron/Humanoid/humanoid_ws/build
Devel space: /home/aaron/Humanoid/humanoid_ws/devel
Install space: /home/aaron/Humanoid/humanoid_ws/install
####
#### Running command: "make cmake_check_build_system" in "/home/aaron/Humanoid/humanoid_ws/build"
####
####
#### Running command: "make -j12 -l12" in "/home/aaron/Humanoid/humanoid_ws/build"
####
Sourcing /home/aaron/Humanoid/humanoid_ws:devel:setup.sh
sh: 5: .: Can't open /home/aaron/Humanoid/humanoid_ws:devel:setup.sh

Process finished with exit code 2

For some reason, it wants to use : to separate file paths... Is this an easy fix?

marcoesposito1988 commented 5 years ago

This should be the same as #13, and it should be solved already.

Are you using an old version of Hatchery?

airfield20 commented 5 years ago

I just installed the plug-in directly from clion marketplace. Is that the most up to date version?

breandan commented 5 years ago

No, but you can download our canary build and install it from disk. Hoping to release a new version to the plugin marketplace shortly. Thanks!

airfield20 commented 5 years ago

Alright thanks, that fixed the issue.

wandgibaut commented 5 years ago

I have the same problem with Pycharm, even with the latest version (0.32) and installing from disk. Do you have another solution suggestion?