glide_up.sh

This commit is contained in:
DanB
2015-09-19 13:41:15 +02:00
parent 681d282662
commit 64c4386d4a
2 changed files with 14 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
#! /usr/bin/env sh
echo "installing CGRateS..."
echo "Installing CGRateS..."
go install github.com/cgrates/cgrates/cmd/cgr-engine
cr=$?

13
glide_up.sh Executable file
View File

@@ -0,0 +1,13 @@
#! /usr/bin/env sh
echo "Executing Glide..."
go get -v github.com/Masterminds/glide
gl=$?
glide up
gu=$?
exit $gl || $gu
echo "export GO15VENDOREXPERIMENT=1"
export GO15VENDOREXPERIMENT=1