1
0
mirror of https://github.com/searxng/searxng.git synced 2024-10-06 19:40:13 +02:00

Merge pull request #158 from return42/fix-node.clean

[fix] node.clean - ignore npm dependencies when npm is not installed
This commit is contained in:
Alexandre Flament 2021-06-20 07:20:38 +02:00 committed by GitHub
commit 0e3a87b73a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
manage
View File

@ -313,6 +313,10 @@ node.env() {
} }
node.clean() { node.clean() {
if ! required_commands npm 2>/dev/null; then
build_msg CLEAN "npm is not installed / ignore npm dependencies"
return 0
fi
build_msg CLEAN "locally installed npm dependencies" build_msg CLEAN "locally installed npm dependencies"
( set -e ( set -e
npm --prefix searx/static/themes/oscar run clean npm --prefix searx/static/themes/oscar run clean