Skip to content
Snippets Groups Projects
Commit 7eba1f5c authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

simplify the prepare_deps script

parent 06a7c197
No related branches found
No related tags found
No related merge requests found
#!/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 ../..
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment