/[projects]/misc/xoa-installer/xoa-installer.sh
ViewVC logotype

Diff of /misc/xoa-installer/xoa-installer.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2961 by torben, Mon Feb 29 10:05:45 2016 UTC revision 2979 by torben, Sat Mar 19 08:05:57 2016 UTC
# Line 53  if [ ! -x "/usr/bin/gcc" ] ; then Line 53  if [ ! -x "/usr/bin/gcc" ] ; then
53          echo "installing build-essential"          echo "installing build-essential"
54          apt-get install  build-essential || exit          apt-get install  build-essential || exit
55  fi  fi
56    
57    if [ ! -x "/usr/bin/redis-server" ] ; then
58            echo "installing redis-server"
59            apt-get install  redis-server || exit
60    fi
61                    
62    
63  if [ ! -x "/usr/local/bin/n" ] ; then  if [ ! -x "/usr/local/bin/n" ] ; then
# Line 71  if [ ! -x "/usr/local/bin/gulp" ] ; then Line 76  if [ ! -x "/usr/local/bin/gulp" ] ; then
76          npm install -g gulp          npm install -g gulp
77  fi  fi
78    
79    if [ ! -x "/usr/local/bin/forever" ] ; then
80            echo "installing forever"
81            npm install -g forever
82    fi
83    
84    if [ ! -x "/usr/local/bin/node-gyp" ] ; then
85            echo "installing node-gyp"
86            npm install -g node-gyp
87    fi
88    
89    if [ ! -x "/usr/bin/git" ] ; then
90            echo "installing git"
91            apt-get install git
92    fi
93    
94  if [ ! -d "xo-web" ] ; then  if [ ! -d "xo-web" ] ; then
95          git clone -b $BRANCH https://github.com/vatesfr/xo-web.git          git clone -b $BRANCH https://github.com/vatesfr/xo-web.git

Legend:
Removed from v.2961  
changed lines
  Added in v.2979

  ViewVC Help
Powered by ViewVC 1.1.20