blob: b25919efe108ab570367c877b831303a56114bde (
plain)
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
|
post_install() {
printf "
\e[33m\e[1mIMPORTANT NOTE:\e[0m
You should add something like this to your ~/.bashrc file:
export ROS_DOMAIN_ID=42
source /opt/ros/iron/setup.bash
This quick command will do it for you:
printf \"\\\nsource /opt/ros/iron/setup.bash\\\n\" >> ~/.bashrc
Note 1: If you use zsh, replace '.bash' in the above lines with
'.zsh' and add the lines to ~/.zshrc .
Note 2: This will slow down terminal startup for a few seconds on
cold start, and a fraction of a second for terminals that open later.
If you know a better transparent solution, you are welcome to edit
this.
\e[33m\e[1mEND OF IMPORTANT NOTE.\e[0m
"
}
post_remove() {
printf "You may want to clean up .bashrc and/or .zshrc."
}
|