diff options
Diffstat (limited to 'utils/lib_sxng_node.sh')
| -rwxr-xr-x | utils/lib_sxng_node.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/lib_sxng_node.sh b/utils/lib_sxng_node.sh index 0845723e0..27a69a62a 100755 --- a/utils/lib_sxng_node.sh +++ b/utils/lib_sxng_node.sh @@ -25,8 +25,8 @@ nodejs.ensure() { node.env() { nodejs.ensure ( set -e - build_msg INSTALL "[npm] ./searx/static/themes/simple/package.json" - npm --prefix searx/static/themes/simple install + build_msg INSTALL "[npm] ./client/simple/package.json" + npm --prefix client/simple install ) dump_return $? } @@ -44,7 +44,7 @@ node.clean() { fi build_msg CLEAN "themes -- locally installed npm dependencies" ( set -e - npm --prefix searx/static/themes/simple run clean \ + npm --prefix client/simple run clean \ | prefix_stdout "${_Blue}CLEAN ${_creset} " if [ "${PIPESTATUS[0]}" -ne "0" ]; then return 1 |