I had to change
to be
if [ ${http_proxy} ] otherwise I would get a
import-release-team-keyring: line 24: [: -v: unary operator expected
Because mac has bash 3.2 seems like. I'm not sure if my fix is entirely portable (so no PR) but the -v I think is for bash >= 4.2. Maybe this was developed on box with a more up-to-date bash or something, thought I'd file this in case someone hits this.
I had to change
asdf-nodejs/bin/import-release-team-keyring
Line 24 in f7e82ef
to be
if [ ${http_proxy} ]otherwise I would get aBecause mac has bash 3.2 seems like. I'm not sure if my fix is entirely portable (so no PR) but the
-vI think is for bash >= 4.2. Maybe this was developed on box with a more up-to-date bash or something, thought I'd file this in case someone hits this.