From 1ed84ec0896058fbd93625d04a3545387782b1cc Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Wed, 22 Mar 2023 09:52:39 -0700 Subject: [PATCH] Update bootstrap.sh Add a comment about paths. --- scripts/bootstrap.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 153abe0c..1e47d137 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -1,5 +1,10 @@ #!/bin/bash +# This script assumes that you already have $HOME/.pub-cache/bin as well as +# Flutter's bin (for `dart`) in your PATH. +# If you don't, add it to your .bashrc or .zshrc file. +# export PATH=$HOME/.pub-cache/bin:$PATH + # Fetch dart dependencies dart pub global activate very_good_cli very_good --analytics=false