From c715f9533aac39f4ba6c332a45c1a27944c03bdd Mon Sep 17 00:00:00 2001 From: GaspardCulis Date: Fri, 10 Nov 2023 13:59:28 +0100 Subject: [PATCH] Added Flutter env config to bashrc --- shell/bash/.bashrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/shell/bash/.bashrc b/shell/bash/.bashrc index 4994459..6f67742 100755 --- a/shell/bash/.bashrc +++ b/shell/bash/.bashrc @@ -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