Skip to content
Snippets Groups Projects
Select Git revision
  • 2e026c10004303ee48d03826e6172d7a2e80b313
  • master default protected
  • server_prod
  • server_dev
  • next_version
  • laurent-change.log
  • HEAD
  • 2019.03.00
  • 2019.02.07
  • 2019.02.06
  • 2019.02.05
  • 2019.02.04
  • 2019.02.03
  • 2019.02.02
  • 2019.02.01
  • 2019.02.00
  • 2019.01.02
  • 2019.01.01
  • 2019.01.00
  • 2018.04.04
  • 2018.04.03
  • 2018.04.02
  • 2018.04.01
  • 2018.04.00
24 results

install.sh

Blame
  • Forked from Open source / vMap
    3017 commits behind the upstream repository.
    ArmandBahi's avatar
    Armand Bahi authored
    2e026c10
    History
    install.sh 632 B
    #!/bin/bash
    #
    #
    # 	Script d'initialisation d'un dépot vMap versionné sous git
    #	Initislise l'ensemble des dépendances sous forme de subtrees
    #   Crée des symlinks pour re-créer l'arborescence de l'application
    #
    #
    
    if [ `whoami` == "root" ]; then
        echo "Please, do not run this script as sudo"
    else
        cd utils/
        ./init_symlinks.sh
        ./pull_subtrees.sh
        ./copy_hooks.sh
    
        cd ../conf
        npm install grunt --save
        npm install grunt-cli
        npm install grunt-closure-tools --save
        npm install google-closure-compiler@20160911.0.0 --save
        npm install google-closure-library@20160911.0.0 --save
        grunt
    fi