mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
13 lines
174 B
Bash
Executable File
13 lines
174 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
if command -v golangci-lint &> /dev/null
|
|
then
|
|
golangci-lint run --timeout=5m
|
|
else
|
|
./bin/golangci-lint run --timeout=5m
|
|
fi
|
|
|