You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Operating System: Linux computer 4.15.0-62-generic #69-Ubuntu SMP Wed Sep 4 20:55:53 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Python Version: Python 2.7.15+
Version of catkin_tools: 0.4.5
ROS Distro: melodic
Build / Run Issue
Works with catkin_make
Works with catkin_make_isolated --merge
Works with catkin build
Works with catkin build -p1
I did not read this
Expected Behavior
Running catkin config -l my-new-log-dir should configure my log directory.
Actual Behavior
Error: Unknown verb 'my-new-log-dir' provided.
Steps to Reproduce the Issue
catkin config -l my-new-log-dir
Also check
catkin config -l
which will set Additional Make Args: -l
Proposed solution
The reason why this happens is that catkin_tools/jobs/commands/make.py already defines -l. Easiest solution would be to change the log space short flag from '-l' to '-L'. If that is acceptable, I can create a pull request)
The text was updated successfully, but these errors were encountered:
Summary of the changes:
* change log space location flag from -l to -L to avoid conflicts (closes#567)
* clean up regular expressions that were not really readable and add explanatory comments to the new ones
* add two additional small tests regarding the job flags
* add `-l` to parser to be shown on `--help`
* specify type of `-l`, `-j` and `-p` options for more useful error messages
System Info
Linux computer 4.15.0-62-generic #69-Ubuntu SMP Wed Sep 4 20:55:53 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Python 2.7.15+
0.4.5
melodic
Build / Run Issue
catkin_make
catkin_make_isolated --merge
catkin build
catkin build -p1
read this
Expected Behavior
Running
catkin config -l my-new-log-dir
should configure my log directory.Actual Behavior
Error: Unknown verb 'my-new-log-dir' provided.
Steps to Reproduce the Issue
Also check
which will set
Additional Make Args: -l
Proposed solution
The reason why this happens is that catkin_tools/jobs/commands/make.py already defines
-l
. Easiest solution would be to change the log space short flag from '-l' to '-L'. If that is acceptable, I can create a pull request)The text was updated successfully, but these errors were encountered: