swh:1:snp:7438b129d9cacb54440879827822fdf5f107e828
Raw File
Tip revision: e397a341d95a4b923c765d733c58a144f661fb57 authored by Liam Paull Test on 15 March 2016, 16:02:12 UTC
adding camera extrinsics
Tip revision: e397a34
environment.sh
#!/usr/bin/env bash
echo "Building machines file"
make
echo "Activating ROS"
source /opt/ros/indigo/setup.bash
echo "Setting up PYTHONPATH"
export PYTHONPATH=/home/ubuntu/duckietown/catkin_ws/src:$PYTHONPATH
echo "Activating development"
source ~/duckietown/catkin_ws/devel/setup.bash
echo "Setup ROS_HOSTNAME"
export ROS_HOSTNAME=$HOSTNAME.local
export DUCKIETOWN_ROOT=$HOME/duckietown
exec "$@" #Passes arguments. Need this for ROS remote launching to work.
back to top