mirror of
https://github.com/moby/moby.git
synced 2026-07-13 11:00:42 +00:00
7 lines
160 B
Bash
Executable File
7 lines
160 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e -o pipefail
|
|
|
|
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
gometalinter --config $SCRIPTDIR/gometalinter.json ./...
|