mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 12:46:39 +00:00
13 lines
241 B
Bash
13 lines
241 B
Bash
#
|
|
# Flutter environment setup
|
|
#
|
|
|
|
if [ -d "/opt/flutter/bin" ]; then
|
|
path_append "/opt/flutter/bin"
|
|
alias fl="flutter"
|
|
|
|
if [ -d "/opt/flutter/bin/cache/dart-sdk/bin" ]; then
|
|
path_append "/opt/flutter/bin/cache/dart-sdk/bin"
|
|
fi
|
|
fi
|