1
0
mirror of https://github.com/alrayyes/wercker-surge-deploy-step synced 2023-11-13 18:16:40 +00:00

fixed gulp command name

This commit is contained in:
Ryan 2016-10-04 21:49:47 +02:00
parent ff79a81300
commit 433c92b663

8
run.sh
View File

@ -2,7 +2,7 @@
# return true if local npm package is installed at ./node_modules, else false
# example
# echo "gulpacular : $(npm_package_is_installed gulpacular)"
# echo "surge : $(npm_package_is_installed surge)"
function npm_package_is_installed {
# set to true initially
local return_=true
@ -13,7 +13,7 @@ function npm_package_is_installed {
}
# First make sure surge is installed
if ! type gulp &> /dev/null ; then
if ! type surge &> /dev/null ; then
# Check if it is in repo
if ! $(npm_package_is_installed surge) ; then
info "surge not installed, trying to install it through npm"
@ -27,8 +27,8 @@ if ! type gulp &> /dev/null ; then
info "installing surge"
npm config set ca "" --silent
sudo npm install npm -g --silent
sudo npm install -g --silent gulp
gulp_command="surge"
sudo npm install -g --silent surge
surge_command="surge"
fi
else
info "surge is available locally"