adding path echos

This commit is contained in:
Anri 2021-11-11 22:54:07 +01:00
parent 6afa166679
commit 77316e8fc6

View file

@ -14,3 +14,13 @@ cd ..
rm -rf GL4Dummies rm -rf GL4Dummies
# Fix pour les librairies partagées (https://stackoverflow.com/a/9395355) # Fix pour les librairies partagées (https://stackoverflow.com/a/9395355)
sudo ldconfig sudo ldconfig
echo ""
echo ""
echo "Add theses lines to your ~/.bashrc"
echo "export PATH=\$PATH:\$HOME/local/bin"
echo "export LD_LIBRARY_PATH=\$LD_LIBRARY_PATH:\$HOME/local/lib"
echo ""
echo "If you use Fish, add theses lines to your ~/.config/fish/config.fish"
echo "set -gx PATH $HOME/local/bin $PATH"
echo "set -gx LD_LIBRARY_PATH $HOME/local/lib $LD_LIBRARY_PATH"