feat: add conditional Flutter binary path to .bashrc
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 19s
Nix Format Check / check-format (push) Successful in 55s
Python Lint Check / check-python (push) Failing after 12s

This commit is contained in:
2025-03-21 10:14:56 +01:00
parent 5651c53ccb
commit b2c3b97048

View File

@@ -73,6 +73,8 @@ export DOTFILES_PATH=$HOME/.dotfiles
export PATH=$PATH:$HOME/.local/bin
export PATH=$PATH:$HOME/.cargo/bin
export PATH=$PATH:$DOTFILES_PATH/bin
# In case $HOME/.flutter/flutter/bin is found, we can add it to the PATH
if [ -d "$HOME/.flutter/flutter/bin" ]; then
export PATH=$PATH:$HOME/.flutter/flutter/bin
fi