forked from allenyh/mecanum_wheels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.sh
executable file
·35 lines (26 loc) · 1.12 KB
/
environment.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash
#[ -z "$DUCKIETOWN_ROOT" ] && { echo "Need to set DUCKIETOWN_ROOT - configuration is invalid (!)"; }
[ -z "$HOSTNAME" ] && { echo "Need to set HOSTNAME."; }
# Do not compile Lisp messages
# XXX: not sure if this is the place to put this.
export ROS_LANG_DISABLE=gennodejs:geneus:genlisp
shell=`basename $SHELL`
echo "Activating ROS with shell: $SHELL"
source /opt/ros/kinetic/setup.$shell
export HOSTNAME=$HOSTNAME
export ROS_HOSTNAME=$HOSTNAME.local
echo "Set ROS_HOSTNAME to: $ROS_HOSTNAME"
#export DUCKIETOWN_ROOT=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
#echo "Set DUCKIETOWN_ROOT to: $DUCKIETOWN_ROOT"
#export PYTHONPATH=$DUCKIETOWN_ROOT/catkin_ws/src:$PYTHONPATH
#echo "Set PYTHONPATH to: $PYTHONPATH"
# Cannot make machines before building
# echo "Building machines file..."
# make -C $DUCKIETOWN_ROOT machines
echo "Activating development environment..."
source ~/mecanum_wheels/catkin_ws/devel/setup.$shell
if [ 2015 -ge $(date +%Y) ];
then
>&2 echo "Error! Time travel detected. System time is: $(date)"
fi
exec "$@" #Passes arguments. Need this for ROS remote launching to work.