Merge pull request #3495 from hashicorp/t-test

Run linter
This commit is contained in:
Alex Dadgar 2017-11-02 17:40:02 -07:00 committed by GitHub
commit 9942ec205a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
set -e
export PING_SLEEP=60
@ -7,9 +7,9 @@ PING_LOOP_PID=$!
trap 'kill ${PING_LOOP_PID}' EXIT HUP INT QUIT TERM
if [[ "$RUN_STATIC_CHECKS" ]]; then
if [ "$RUN_STATIC_CHECKS" ]; then
make check
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
make checkscripts
fi
fi