File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -664,7 +664,7 @@ def find_docker_console():
664664
665665 # Delete old files
666666 if os .path .exists ("/workspace/code" ):
667- shutil .rmtree ("/workspace/code" )
667+ shutil .rmtree ("/workspace/code" , ignore_errors = False )
668668 os .mkdir ("/workspace/code" )
669669
670670 # Extract app config
@@ -692,7 +692,7 @@ def find_docker_console():
692692 console_fd = str (max (map (int , fds [:- 1 ])))
693693
694694 os .system (
695- '/bin/bash -c "cd /workspace/code; source /opt/ros/humble/setup.bash; colcon build --symlink-install ; source install/setup.bash; cd ../.."'
695+ '/bin/bash -c "cd /workspace/code; source /opt/ros/humble/setup.bash; colcon build; source install/setup.bash; cd ../.."'
696696 )
697697
698698 self .application_process = subprocess .Popen (
You can’t perform that action at this time.
0 commit comments