From d2677139257b67cc2fefcc3ece28177f5ac66ac9 Mon Sep 17 00:00:00 2001 From: Leonid Plyushch Date: Thu, 23 May 2019 00:25:00 +0300 Subject: [PATCH] dart: add '$HOME/.pub-cache/bin' to PATH instead of '$HOME/.pub-cache' --- packages/dart/dart-pub-bin.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/dart/dart-pub-bin.sh b/packages/dart/dart-pub-bin.sh index 4c2cab4f6..b2f7bc8a6 100644 --- a/packages/dart/dart-pub-bin.sh +++ b/packages/dart/dart-pub-bin.sh @@ -1,3 +1,3 @@ # Executables installed with 'pub global activate' are available -# in directory $HOME/.pub-cache. -export PATH="$HOME/.pub-cache:$PATH" +# in directory $HOME/.pub-cache/bin. +export PATH="$HOME/.pub-cache/bin:$PATH"