wkentaro
6/17/2016 - 12:32 PM

env-loader

env-loader

#!/bin/sh

. /opt/ros/indigo/setup.sh
. $HOME/ros/indigo/devel/setup.sh

export PATH=`rospack find roseus`/bin:"$PATH"

#copy from /etc/ros/indigo/env.sh
if [ $# -eq 0 ] ; then
    /bin/echo "Entering environment at /opt/ros/indigo"
    $SHELL
    /bin/echo "Exiting build environment at /opt/ros/indigo"
else
    exec "$@"
fi