asdf-nodejs/bin/postinstall
2019-06-03 13:18:07 -07:00

8 lines
266 B
Bash
Executable File

#!/usr/bin/env bash
if [ "$ASDF_SKIP_RESHIM" == "1" ]; then
echo "Run 'asdf reshim nodejs ${ASDF_INSTALL_VERSION:-$npm_config_node_version}' after installing the packages to reshim"
else
asdf reshim nodejs "${ASDF_INSTALL_VERSION:-$npm_config_node_version}"
fi