mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-22 02:50:04 -05:00
10 lines
219 B
Bash
Executable File
10 lines
219 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
script_dir=$(dirname "$0")
|
|
cd $script_dir/..
|
|
|
|
( go list -deps -json -tags +arm64,+amd64,+windows,+linux,+darwin,+386 ./cmd/dolt/. ) \
|
|
| go run ./utils/3pdeps/. -verify ./Godeps/LICENSES
|