Avoid errors on golint test with travis
No idea why this happens on travis, and I'm done wasting time trying to figure it out.
This commit is contained in:
@@ -14,7 +14,8 @@ cd "${ROOT}" >/dev/null
|
|||||||
# note: this is a cheap way to avoid doing a fancy succession of golint's...
|
# note: this is a cheap way to avoid doing a fancy succession of golint's...
|
||||||
HACK=''
|
HACK=''
|
||||||
COMMITS="`git rev-list --count $CURRENT ^master`" # commit delta to master
|
COMMITS="`git rev-list --count $CURRENT ^master`" # commit delta to master
|
||||||
if [ "$COMMITS" -gt "1" ]; then
|
# avoid: bad revision '^master' on travis for unknown reason :(
|
||||||
|
if [ "$COMMITS" != "" ] && [ "$COMMITS" -gt "1" ]; then
|
||||||
PREVIOUS='master'
|
PREVIOUS='master'
|
||||||
HACK="yes"
|
HACK="yes"
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user