8 lines
141 B
Bash
Executable File
8 lines
141 B
Bash
Executable File
#!/bin/bash
|
|
set -eE -o pipefail
|
|
|
|
script_dir=$(dirname "$(realpath "$0")")
|
|
cd $script_dir/..
|
|
|
|
go vet -structtag=false -composites=false ./...
|