Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rust integration #81

Merged
merged 3 commits into from
Nov 4, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added rust support and fixed #79
  • Loading branch information
gstavrinos committed Nov 2, 2024
commit 215ff2d89aacb8093d1ba780706a88f26d40e2c3
5 changes: 3 additions & 2 deletions internal/entrypoint.bash
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ if [ "$rosversion" != "unknown" ]; then
intermediate_error_handler $?
else
if [ $skip_compilation -ne 1 ]; then
script --flush --quiet --return /tmp/rosez-build-output.txt --command "catkin_make"
script --flush --quiet --return /tmp/rosez-build-output.txt --command "catkin_make" | tee /dev/fd/2
intermediate_error_handler $?
fi
. /opt/ros/$bl/devel/setup.bash
Expand All @@ -69,4 +69,5 @@ if [ "$rosversion" != "unknown" ]; then
exec "$@"
trap - $signal_list
fi
# . "$HOME/.cargo/env"
export PATH=/home/rosez_user/.local/bin:$PATH
. "$HOME/.cargo/env"