Software /
code /
prosody-modules
Comparison
mod_admin_web/admin_web/get_deps.sh @ 297:a70284e01453
mod_admin_web: Add support for calling adhoc commands
author | Florian Zeitz <florob@babelmonkeys.de> |
---|---|
date | Sun, 26 Dec 2010 02:20:25 +0100 |
parent | 291:94fab3c0a7aa |
child | 331:b8ea61f3b442 |
comparison
equal
deleted
inserted
replaced
296:d49702971a5e | 297:a70284e01453 |
---|---|
1 #!/bin/sh | 1 #!/bin/sh |
2 cd www_files/js | 2 cd www_files/js |
3 wget http://code.jquery.com/jquery-1.4.4.min.js | 3 test -e jquery-1.4.4.min.js || wget http://code.jquery.com/jquery-1.4.4.min.js |
4 git clone git://github.com/metajack/strophejs.git strophejs | 4 test -e adhoc.js || wget http://cgit.babelmonkeys.de/cgit.cgi/adhocweb/plain/js/adhoc.js |
5 cd strophejs | 5 test -e strophe.js || (git clone git://github.com/metajack/strophejs.git strophejs && \ |
6 make strophe.js && cp strophe.js ../strophe.js | 6 cd strophejs && make strophe.js && cp strophe.js ../strophe.js && \ |
7 cd .. | 7 cd .. && rm -rf strophejs) |
8 rm -rf strophejs |