mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 14:21:50 +00:00

When sourcing a script without parameters in zsh the sourced scripts gets the same parameters as the sourcing file and is able to modify these parameters. Prevent nvm from removing all parameters of sourcing script by processing a copy of the parameters in a function.
6 lines
52 B
Bash
Executable File
6 lines
52 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -- yes
|
|
. ../../nvm.sh
|
|
[ "$1" = yes ]
|