mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-05 11:21:58 -05:00
11 lines
304 B
Bash
Executable File
11 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
script_dir=$(dirname "$0")
|
|
cd $script_dir/..
|
|
|
|
( go list -deps -json ./cmd/dolt/. ./cmd/git-dolt/. ./cmd/git-dolt-smudge/. && \
|
|
GOOS=windows go list -deps -json ./cmd/dolt/. ./cmd/git-dolt/. ./cmd/git-dolt-smudge/.) \
|
|
| go run ./utils/3pdeps/. -verify ./Godeps/LICENSES
|