swh:1:snp:7438b129d9cacb54440879827822fdf5f107e828
Raw File
Tip revision: e437a48b28a491437cd6c38c924a4c893433beeb authored by Teddy Ort on 23 April 2016, 02:38:33 UTC
Adds pond and halfpond tiles to open_house_dp6
Tip revision: e437a48
environment.sh
#!/bin/bash

echo "Activating ROS..."
source /opt/ros/indigo/setup.bash
echo "...done."

echo "Setting up PYTHONPATH."
export PYTHONPATH=/home/ubuntu/duckietown/catkin_ws/src:$PYTHONPATH

echo "Setup ROS_HOSTNAME."
export ROS_HOSTNAME=$HOSTNAME.local
export DUCKIETOWN_ROOT=$HOME/duckietown

echo "Building machines file..."
make -C  $DUCKIETOWN_ROOT
echo "...done"
echo "Activating development."
source $DUCKIETOWN_ROOT/catkin_ws/devel/setup.bash

# TODO: check that the time is >= 2015

# TODO: run a python script that checks all libraries are installed

exec "$@" #Passes arguments. Need this for ROS remote launching to work.
back to top