Fix setup script

This commit is contained in:
Youngkyun Kim
2017-12-29 21:58:46 +09:00
parent 88fb7bdacc
commit 7454b9db1f

View File

@@ -1,9 +1,9 @@
#! /bin/sh
#! /bin/bash
# Install bower, bundler, packages
function install {
sudo npm install -g bower
sudo --askpass bower install --allow-root
npm install bower
bower install --allow-root
gem install bundler
bundle install
}