File tree Expand file tree Collapse file tree 4 files changed +3
-2
lines changed
Expand file tree Collapse file tree 4 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ RUN npm --prefix /RESTART/gui install && npm --prefix /RESTART/gui run build
4848
4949# Move the built COCO files to the /app directory
5050RUN mv /RESTART/build/RESTART /restart \
51+ && mv /RESTART/rules /rules \
5152 && mkdir -p /gui && mv /RESTART/gui/dist /gui \
5253 && rm -rf /RESTART
5354
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -40,13 +40,13 @@ int main()
4040 cc.create_reactive_rule (" robot_session" , restart::start_session_rule);
4141 cc.create_reactive_rule (" robot_rot" , restart::start_rot_rule);
4242 {
43- std::ifstream file (" src /start_training.clp" );
43+ std::ifstream file (" rules /start_training.clp" );
4444 std::stringstream buffer;
4545 buffer << file.rdbuf ();
4646 cc.create_reactive_rule (" start_training" , buffer.str ());
4747 }
4848 {
49- std::ifstream file (" src /exercise_done.clp" );
49+ std::ifstream file (" rules /exercise_done.clp" );
5050 std::stringstream buffer;
5151 buffer << file.rdbuf ();
5252 cc.create_reactive_rule (" exercise_done" , buffer.str ());
You can’t perform that action at this time.
0 commit comments