mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 14:21:50 +00:00
[feature] Allow passing additional arguments to node
For example: nvm run v0.6.0 myApp.js
This commit is contained in:
parent
335a253323
commit
53e1764a8a
4
nvm.sh
4
nvm.sh
@ -202,7 +202,7 @@ nvm()
|
||||
;;
|
||||
"run" )
|
||||
# run given version of node
|
||||
if [ $# -ne 2 ]; then
|
||||
if [ $# -lt 2 ]; then
|
||||
nvm help
|
||||
return
|
||||
fi
|
||||
@ -212,7 +212,7 @@ nvm()
|
||||
return;
|
||||
fi
|
||||
echo "Running node $VERSION"
|
||||
$NVM_DIR/$VERSION/bin/node
|
||||
$NVM_DIR/$VERSION/bin/node "${@:3}"
|
||||
;;
|
||||
"ls" | "list" )
|
||||
if [ $# -ne 1 ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user