Skip to content
Snippets Groups Projects
Commit f2ec99f0 authored by Paul Beuchat's avatar Paul Beuchat
Browse files

Fixed small error in installation script related to putting username in absolute path

parent 18d06460
No related branches found
No related tags found
No related merge requests found
......@@ -154,9 +154,9 @@ echo "# ADDED AS PART OF THE D-FaLL-System INSTALLATION" >> ~/.bashrc
# Add an evironment variable that point to the D-FaLL-System Repository
echo "# Environment variable for the home directory" >> ~/.bashrc
echo "export DFALL_HOME=\"/home/agent01/work/D-FaLL-System\"" >> ~/.bashrc
echo "export DFALL_HOME=\"/home/$USER/work/D-FaLL-System\"" >> ~/.bashrc
# And set the environment variable for this terminal session
export DFALL_HOME="/home/agent01/work/D-FaLL-System"
export DFALL_HOME="/home/$USER/work/D-FaLL-System"
# Add the ROS environment setup to the .bashrc
echo "# Source the ROS setup" >> ~/.bashrc
......
......@@ -154,9 +154,9 @@ echo "# ADDED AS PART OF THE D-FaLL-System INSTALLATION" >> ~/.bashrc
# Add an evironment variable that point to the D-FaLL-System Repository
echo "# Environment variable for the home directory" >> ~/.bashrc
echo "export DFALL_HOME=\"/home/agent01/work/D-FaLL-System\"" >> ~/.bashrc
echo "export DFALL_HOME=\"/home/$USER/work/D-FaLL-System\"" >> ~/.bashrc
# And set the environment variable for this terminal session
export DFALL_HOME="/home/agent01/work/D-FaLL-System"
export DFALL_HOME="/home/$USER/work/D-FaLL-System"
# Add the ROS environment setup to the .bashrc
echo "# Source the ROS setup" >> ~/.bashrc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment