From 083232305b10e0643e3c65e0d6371081c3913a70 Mon Sep 17 00:00:00 2001 From: Ambrose Chua Date: Sat, 26 Feb 2022 09:27:12 +0800 Subject: [PATCH] Add flutter to PATH --- .zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.zshrc b/.zshrc index 44ec7ac..b5d7bbc 100644 --- a/.zshrc +++ b/.zshrc @@ -78,6 +78,9 @@ fi if [[ -f "$HOME/go/bin/g" ]]; then export PATH="$HOME/go/bin:$PATH" GOPATH="$HOME/go" GOROOT="$HOME/.go" # g-install: do NOT edit, see https://github.com/stefanmaric/g fi +if [[ -d "$HOME/flutter/bin" ]]; then + export PATH="$HOME/flutter/bin:$PATH" +fi if [[ -d "$HOME/.cargo" ]]; then export PATH="$HOME/.cargo/bin:$PATH" fi