Sophie

Sophie

distrib > Mageia > 7 > armv7hl > by-pkgid > 953b220f4f6c2c244195518a568ec3b3 > files > 47

mediawiki-1.31.3-1.mga7.noarch.rpm

#!/usr/bin/env bash

if command -v npm > /dev/null ; then
  npm install
else
  # If npm isn't installed, but kss-node is, exit normally.
  # This allows setting it up on one machine, and running it on
  # another (e.g. Tools Labs execution nodes) that doesn't have npm
  # installed.  However, "npm install" still needs to be run
  # occasionally to keep kss updated.

  KSS_NODE="${BASH_SOURCE%/*}/../node_modules/.bin/kss-node"
  if ! [ -x "$KSS_NODE" ] ; then
    echo "Neither kss-node nor npm are installed."
    echo "To install npm, see http://nodejs.org/"
    echo "When npm is installed, the Makefile can automatically"
    echo "install kss-node."
    exit 1
  fi
fi