mirror of https://github.com/shirou/gopsutil
fix mktypes.sh
parent
ab0d977709
commit
f9c39a6d8f
@ -1,19 +1,15 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
PKGS="cpu disk docker host load mem net process"
|
PKGS="cpu disk docker host load mem net process sensors winservices"
|
||||||
|
|
||||||
GOOS=$(go env GOOS)
|
GOOS=$(go env GOOS)
|
||||||
GOARCH=$(go env GOARCH)
|
GOARCH=$(go env GOARCH)
|
||||||
|
|
||||||
for DIR in .
|
for PKG in $PKGS
|
||||||
do
|
do
|
||||||
(cd "$DIR" || exit
|
if [ -e "${PKG}/types_${GOOS}.go" ]; then
|
||||||
for PKG in $PKGS
|
(echo "// +build $GOOS"
|
||||||
do
|
echo "// +build $GOARCH"
|
||||||
if [ -e "${PKG}/types_${GOOS}.go" ]; then
|
go tool cgo -godefs "${PKG}/types_${GOOS}.go") | gofmt > "${PKG}/${PKG}_${GOOS}_${GOARCH}.go"
|
||||||
(echo "// +build $GOOS"
|
fi
|
||||||
echo "// +build $GOARCH"
|
|
||||||
go tool cgo -godefs "${PKG}/types_${GOOS}.go") | gofmt > "${PKG}/${PKG}_${GOOS}_${GOARCH}.go"
|
|
||||||
fi
|
|
||||||
done)
|
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue