Browse Source
Allows both `.node-version` and `.nvmrc` files to contain the same version, if they're formatted into the same version. i.e. `11.10.0` should equal to `v11.10.0` Closes #206remotes/origin/add-simple-redirecting-site
![amitdahan11@gmail.com](/assets/img/avatar_default.png)
![GitHub](/assets/img/avatar_default.png)
5 changed files with 19 additions and 2 deletions
@ -0,0 +1 @@
@@ -0,0 +1 @@
|
||||
11.10.0 |
@ -0,0 +1 @@
@@ -0,0 +1 @@
|
||||
v11.10.0 |
@ -0,0 +1,13 @@
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash |
||||
|
||||
#set -e |
||||
|
||||
eval $(fnm env) |
||||
fnm install |
||||
fnm use |
||||
|
||||
echo node --version |
||||
if [ "$(node --version)" != "v11.10.0" ]; then |
||||
echo "Expected Node version is not v11.10.0!" |
||||
exit 1 |
||||
fi |
Loading…
Reference in new issue