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

View File

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