We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 103546d commit 68ec468Copy full SHA for 68ec468
1 file changed
src/project_manager/ros_colcon_step.cpp
@@ -121,6 +121,11 @@ bool ROSColconStep::init()
121
// That is mostly so that rebuild works on an already clean project
122
setIgnoreReturnValue(m_target == CLEAN);
123
124
+ // set working directory to the project directory for the whole process step
125
+ setWorkingDirectoryProvider([bc]() {
126
+ return bc->project()->projectDirectory();
127
+ });
128
+
129
return AbstractProcessStep::init();
130
}
131
0 commit comments