我想使用shell脚本来安装和激活nvm。这是主要的代码块
echo "installing nvm"
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
# nvm is installed in test/my_folder.
echo "activating nvm"
source test/my_folder/.nvm/nvm.sh # doesn't work....
该脚本不适用于激活部分。但是,当我在命令行运行它时,它可以工作。没人知道是什么问题吗?为什么在脚本中不起作用?
它不会引发任何错误。但是nvm并没有被激活。