Added Flutter env config to bashrc

This commit is contained in:
GaspardCulis 2023-11-10 13:59:28 +01:00
parent 14ff7289af
commit c715f9533a

View file

@ -43,3 +43,8 @@ fi
if [ -f ~/.bash_exec ]; then
source ~/.bash_exec
fi
FLUTTER_PATH="/opt/flutter/bin"
if test -d "$FLUTTER_PATH"; then
export PATH="$FLUTTER_PATH:$PATH"
fi