From 7eba1f5c6980f2329a41eb005c5f95aec8650be5 Mon Sep 17 00:00:00 2001 From: Lloyd Hilaiel <lloyd@hilaiel.com> Date: Wed, 14 Sep 2011 14:30:05 -0600 Subject: [PATCH] simplify the prepare_deps script --- prepare_deps.sh | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/prepare_deps.sh b/prepare_deps.sh index 90d0d69da..f31746950 100755 --- a/prepare_deps.sh +++ b/prepare_deps.sh @@ -1,22 +1,10 @@ #!/bin/bash -npm install - -echo '*** Asking for sudo to install browserify globally ***' -sudo npm install -g browserify - -echo '*** Fetching and updating required submodules ***' -git submodule init -git submodule update - -cd lib/jwcrypto -./bundle.sh - echo '' echo '*** Generating keys and placing them into correct location ***' +cd lib/jwcrypto node generate-keypair.js mv key.publickey ../../var/root.publickey mv key.secretkey ../../var/root.secretkey cd ../.. - -- GitLab