From 87bc11061d3b67c24c2c3f87373aea6e967489ec Mon Sep 17 00:00:00 2001 From: "Dominic Z. Rodriguez" Date: Tue, 2 Sep 2014 18:53:36 +0100 Subject: [PATCH 1/2] Updated the shell script 'install' for dbot, download urls for bootstrap and d3js were not working. --- install | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/install b/install index c8f5611..99a90a1 100755 --- a/install +++ b/install @@ -17,15 +17,17 @@ fi npm install feedparser node-units tvdb crypto-js 500px process async wordnik node-uuid underscore request sandbox express moment-timezone moment jade databank databank-redis ent passport passport-local password-hash connect-flash cd public/ -wget http://twitter.github.com/bootstrap/assets/bootstrap.zip +#wget http://twitter.github.com/bootstrap/assets/bootstrap.zip +wget https://github.com/twbs/bootstrap/releases/download/v3.2.0/bootstrap-3.2.0-dist.zip unzip bootstrap.zip rm bootstrap.zip mkdir d3 cd d3 -wget http://d3js.org/d3.v3.zip -unzip d3.v3.zip -rm d3.v3.zip +#wget http://d3js.org/d3.v3.zip +wget https://github.com/mbostock/d3/releases/download/v3.4.11/d3.zip +unzip d3.zip +rm d3.zip cd ../.. From b1a6a85ff791e94ec1122a733fdf4a4ec5e5441d Mon Sep 17 00:00:00 2001 From: "Dominic Z. Rodriguez" Date: Tue, 2 Sep 2014 18:58:32 +0100 Subject: [PATCH 2/2] Just a minor fix to a filename --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index 99a90a1..eccdb5e 100755 --- a/install +++ b/install @@ -19,7 +19,7 @@ npm install feedparser node-units tvdb crypto-js 500px process async wordnik nod cd public/ #wget http://twitter.github.com/bootstrap/assets/bootstrap.zip wget https://github.com/twbs/bootstrap/releases/download/v3.2.0/bootstrap-3.2.0-dist.zip -unzip bootstrap.zip +unzip bootstrap-3.2.0-dist.zip rm bootstrap.zip mkdir d3