mirror of
https://github.com/go-gst/go-gst.git
synced 2025-10-05 07:56:51 +08:00
9 lines
183 B
Bash
Executable File
9 lines
183 B
Bash
Executable File
#!/bin/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
|