We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07e96b8 commit 80df96cCopy full SHA for 80df96c
install-gui.sh
@@ -30,6 +30,16 @@ fi
30
SUBMODULE_BRANCH=$1
31
32
do_check_npm_install() {
33
+ if ! command -v npm >/dev/null 2>&1; then
34
+ echo "npm is not installed. Please install NodeJS>=20 and npm>=10 manually"
35
+ exit 1
36
+ fi
37
+
38
+ if ! command -v node >/dev/null 2>&1; then
39
+ echo "NodeJS is not installed. Please install NodeJS>=20 and npm>=10 manually"
40
41
42
43
NODEJS_VERSION="$(node -v | cut -d'.' -f 1 | sed -e 's/^v//')"
44
NPM_VERSION="$(npm -v | cut -d'.' -f 1)"
45
0 commit comments