mirror of
https://github.com/go-gst/go-gst.git
synced 2025-09-27 04:15:56 +08:00
9 lines
191 B
Bash
Executable File
9 lines
191 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# this script builds all go packages in the current directory
|
|
|
|
packages=$(go list ./...)
|
|
for package in $packages; do
|
|
go build -o /dev/null "$package" || exit 1
|
|
done
|