summaryrefslogtreecommitdiff
path: root/install-pixelated.sh
diff options
context:
space:
mode:
authorMircea Moise <mmoise@thoughtworks.com>2014-11-19 12:31:55 +0000
committerMircea Moise <mmoise@thoughtworks.com>2014-11-19 14:22:53 +0000
commit42dcf546c2996fd612a5c937c256d6d21bbf9fad (patch)
tree23b6215176d5644800c96913ec47a8185d6f1733 /install-pixelated.sh
parentf202ed1c57d5a727dbcc6d10d6a669d363639ab3 (diff)
Removing cloning of the repo - assuming it already exists + update
README + disbled interactivity in the bower install + workaround gnupg issue
Diffstat (limited to 'install-pixelated.sh')
-rw-r--r--install-pixelated.sh10
1 files changed, 4 insertions, 6 deletions
diff --git a/install-pixelated.sh b/install-pixelated.sh
index 3aa816d5..3ee52a84 100644
--- a/install-pixelated.sh
+++ b/install-pixelated.sh
@@ -26,16 +26,13 @@ function check_installed() {
}
for dependency in node npm ruby bundle virtualenv git gpg; do
- check_installed $dependency
+ check_installed $dependency
done
-# clone repo
-git clone https://github.com/pixelated-project/pixelated-user-agent
-
# install web-ui dependencies
-cd pixelated-user-agent/web-ui
+cd web-ui
npm install
-node_modules/bower/bin/bower install
+node_modules/bower/bin/bower install --config.interactive=false
bundle install
LC_ALL=en_US.UTF-8 ./go build
@@ -44,6 +41,7 @@ cd ../service
virtualenv .virtualenv
source .virtualenv/bin/activate
./go develop --always-unzip
+pip uninstall -y gnupg; pip install gnupg
# print usage
cat <<EOF