/[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 2957 by torben, Mon Feb 29 09:39:36 2016 UTC revision 2963 by torben, Mon Feb 29 10:29:04 2016 UTC
# Line 44  if [ "$1" == "clean" ] ; then Line 44  if [ "$1" == "clean" ] ; then
44  fi  fi
45    
46    
47    if [ ! -x "/usr/bin/curl" ] ; then
48            echo "installing curl"
49            apt-get install curl || exit
50    fi
51    
52    if [ ! -x "/usr/bin/gcc" ] ; then
53            echo "installing build-essential"
54            apt-get install  build-essential || exit
55    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
64          echo "installing node.js bootstrap"          echo "installing node.js bootstrap"
65          curl -o /usr/local/bin/n https://raw.githubusercontent.com/visionmedia/n/master/bin/n || exit          curl -o /usr/local/bin/n https://raw.githubusercontent.com/visionmedia/n/master/bin/n || exit
# Line 52  fi Line 68  fi
68    
69  if [ ! -x "/usr/local/bin/node" ] ; then  if [ ! -x "/usr/local/bin/node" ] ; then
70          echo "installing node.js"          echo "installing node.js"
71          n stable          n stable || exit
72    fi
73    
74    if [ ! -x "/usr/local/bin/gulp" ] ; then
75            echo "installing gulp"
76            npm install -g gulp
77    fi
78    
79    if [ ! -x "/usr/local/bin/forever" ] ; then
80            echo "installing forever"
81            npm install -g forever
82  fi  fi
83    
84    
# Line 76  fi Line 102  fi
102    
103    
104  # xo-server  # xo-server
105    echo "building xo-server"
106  cd xo-server  cd xo-server
107  npm install --unsafe-perm || exit  npm install || exit
108  npm run build || exit  npm run build || exit
109  cd ..  cd ..
110    
111    
112  #xo-web  #xo-web
113    echo "building xo-web"
114  cd xo-web  cd xo-web
115  npm install --unsafe-perm || exit  npm install --unsafe-perm || exit
116  npm run build || exit  npm run build || exit

Legend:
Removed from v.2957  
changed lines
  Added in v.2963

  ViewVC Help
Powered by ViewVC 1.1.20