Add missing stringer dependency

This is used during the `go generate` pre-processor.
This commit is contained in:
James Shubin
2016-01-05 03:03:30 -05:00
parent 904ace8027
commit 0bbfd1d071

View File

@@ -9,10 +9,10 @@ fi
if [ $travis -eq 0 ]; then
YUM=`which yum`
if [ -z $YUM ]; then
echo "The 'yum' utility can't be installed."
echo "The 'yum' utility can't be found."
exit 1
fi
sudo yum install -y golang
sudo yum install -y golang golang-googlecode-tools-stringer
sudo yum install -y hg # some go dependencies are stored in mercurial
fi