Blame view

configure 341 Bytes
73f2ae9d   Geoffrey PREUD'HOMME   Outils de rédaction
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  #!/usr/bin/env bash
  
  echo "Vérification de la configuration système..."
  
  if ! which node &> /dev/null
  then
      echo "Veuillez installer NodeJS (sudo apt-get install nodejs npm)"
      exit 1
  fi
  
  if ! which npm &> /dev/null
  then
      echo "Veuillez installer NPM (sudo apt-get install npm)"
      exit 1
  fi
  
  echo "Préparation..."
  
  npm install