fix: add /usr/bin/brave-browser as chrome exec for flutter
Some checks failed
Nix Format Check / check-format (push) Failing after 1m7s
Python Lint Check / check-python (push) Failing after 6s
Ansible Lint Check / check-ansible (push) Failing after 9s

This commit is contained in:
2025-08-27 16:26:23 +02:00
parent 5ebb22182d
commit 79425af4b0

View File

@@ -21,6 +21,11 @@ if [ -z "$SSH_AUTH_SOCK" ]; then
export SSH_AUTH_SOCK=~/.1password/agent.sock
fi
# If brave is available as browser set CHROME_EXECUTABLE to that.
if command -v brave-browser &> /dev/null; then
export CHROME_EXECUTABLE=/usr/bin/brave-browser
fi
# Docker Compose Alias (Mostly for old shell scripts)
alias docker-compose='docker compose'