2015-03-02 14:55:34 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
|
|
|
DEST_DIR="web/static/"
|
|
|
|
|
2015-09-09 14:38:56 +02:00
|
|
|
ANGULAR='1.4.5'
|
|
|
|
ANGULAR_BOOTSTRAP='0.13.4'
|
2015-03-02 14:55:34 +01:00
|
|
|
|
|
|
|
wget https://ajax.googleapis.com/ajax/libs/angularjs/${ANGULAR}/angular.min.js -O ${DEST_DIR}/angular.min.js
|
|
|
|
wget https://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-${ANGULAR_BOOTSTRAP}.min.js -O ${DEST_DIR}/ui-bootstrap-tpls.min.js
|
|
|
|
|
|
|
|
wget https://sphinxsearch.googlecode.com/svn/trunk/api/sphinxapi.py -O sphinxapi.py
|
|
|
|
|
|
|
|
|
|
|
|
|