Fix setup script

This commit is contained in:
Youngkyun Kim 2017-12-29 21:58:46 +09:00
parent 88fb7bdacc
commit 7454b9db1f
No known key found for this signature in database
GPG Key ID: 07AB560C7F798018
1 changed files with 3 additions and 3 deletions

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
}