https://github.com/duckietown/Software
Raw File
Tip revision: 56267a18389c7c80a89431f1fb588249f37b1a0f authored by Robert Katzschmann on 19 April 2016, 18:41:24 UTC
Merge branch 'master-kin' into dp3-indef_nav_kin
Tip revision: 56267a1
bootstrap.sh.old
#!/bin/bash
set -e
set -x

echo "First, let's set the date correctly"
sudo ntpdate -u us.pool.ntp.org 


echo "I expect DUCKIE_ROOT to be set"
echo DUCKIE_ROOT=$DUCKIE_ROOT

echo "I will create a file config.sh here"
config=$DUCKIE_ROOT/config.sh
touch config

echo I will include that file in .bashrc

echo "source $config" >> ~/.bashrc


back to top