This commit is contained in:
Andre Kradolfer 2024-07-22 14:08:38 -06:00
commit e51d3a52cc
No known key found for this signature in database
GPG Key ID: 863F29E460469E17
2 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ before_install:
- zsh --version - zsh --version
- dpkg -s dash | grep ^Version | awk '{print $2}' - dpkg -s dash | grep ^Version | awk '{print $2}'
# install python # install python
- pyenv install 2.7.18 - pyenv local 2.7.18 || pyenv install 2.7.18
- pyenv local 2.7.18 || echo 'pyenv failed' - pyenv local 2.7.18 || echo 'pyenv failed'
- python -V - python -V
install: install:

4
nvm.sh
View File

@ -141,8 +141,8 @@ nvm_download() {
-e 's/-o /-O /' \ -e 's/-o /-O /' \
-e 's/-C - /-c /') -e 's/-C - /-c /')
if [ -n "$NVM_AUTH_HEADER" ]; then if [ -n "${NVM_AUTH_HEADER:-}" ]; then
ARGS="$ARGS --header \"$NVM_AUTH_HEADER\"" ARGS="${ARGS} --header \"${NVM_AUTH_HEADER}\""
fi fi
# shellcheck disable=SC2086 # shellcheck disable=SC2086
eval wget $ARGS eval wget $ARGS