mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
13 lines
236 B
Bash
Executable File
13 lines
236 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
echo "installing global node modules..."
|
|
sudo npm install -g jshint bower grunt-cli
|
|
|
|
echo "installing local node modules..."
|
|
npm install
|
|
|
|
echo "installing bower client modules..."
|
|
bower --allow-root install
|
|
|
|
echo "done"
|