mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-01-24 17:22:27 +00:00
Fix bin/setup checking outdated node requirements
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
7b3b6ad7ac
commit
f6a28fb69b
1 changed files with 2 additions and 2 deletions
|
@ -31,11 +31,11 @@ EOF
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if version_lt "$(node --version)" 'v14.13.1'; then
|
if version_lt "$(node --version)" 'v16.0.0'; then
|
||||||
cat << EOF
|
cat << EOF
|
||||||
FATAL: Your Node.js version is not supported.
|
FATAL: Your Node.js version is not supported.
|
||||||
|
|
||||||
Please upgrade to version 14.13.1 or higher and try again.
|
Please upgrade to version 16 or higher and try again.
|
||||||
We recommend running the latest LTS release, see https://nodejs.org/en/about/releases/ for details.
|
We recommend running the latest LTS release, see https://nodejs.org/en/about/releases/ for details.
|
||||||
EOF
|
EOF
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in a new issue