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