-
Notifications
You must be signed in to change notification settings - Fork 48
/
code_grabber
executable file
·23 lines (19 loc) · 1.02 KB
/
code_grabber
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
set -e
set -x
wget http://code.jquery.com/jquery-1.7.2.min.js -O jquery.js
wget https://jssip.net/download/releases/jssip-3.3.11.js -O jssip.js
wget https://raw.githubusercontent.com/taylor1791/promissory-arbiter/master/src/promissory-arbiter.js -O Arbiter.js
wget https://raw.githubusercontent.com/jquery-i18n-properties/jquery-i18n-properties/cbb8300bef6e148753f147643ecc5f64f0e0b34e/jquery.i18n.properties.js -O jquery.i18n.properties.js
mkdir -p font-awesome/css
mkdir -p font-awesome/fonts
mkdir -p temp
wget -P temp http://jqueryui.com/resources/download/jquery-ui-1.10.4.zip
unzip -d temp temp/jquery-ui-1.10.4.zip
cp temp/jquery-ui-1.10.4/ui/minified/jquery-ui.min.js jquery-ui.js
cp temp/jquery-ui-1.10.4/themes/base/minified/jquery-ui.min.css jquery-ui.css
wget -P temp https://github.com/FortAwesome/Font-Awesome/archive/4.1.0.zip
unzip -d temp temp/4.1.0.zip
cp temp/Font-Awesome-4.1.0/css/font-awesome.min.css font-awesome/css/font-awesome.min.css
cp -a temp/Font-Awesome-4.1.0/fonts/. font-awesome/fonts
rm -r temp