We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b168128 commit c2c2e20Copy full SHA for c2c2e20
bin/local-lib
@@ -7,8 +7,12 @@ if [ -z "$1" ]; then
7
ll_roots=("$(mktemp -d -t local-lib-XXXXXX)")
8
else
9
for lib; do
10
- [ -z "$LL_NO_INSTALL" ] && $HELPERS_ROOT/bin/local-lib-installer "$lib"
11
- ll_roots+=("$PERLBREW_HOME/libs/$PERLBREW_PERL@$lib")
+ if [ -z "$LL_NO_INSTALL" ]; then
+ # redirect since output of this gets eval-ed
12
+ if $HELPERS_ROOT/bin/local-lib-installer "$lib" 1>&2; then
13
+ ll_roots+=("$PERLBREW_HOME/libs/$PERLBREW_PERL@$lib")
14
+ fi
15
16
done
17
fi
18
0 commit comments