mirror of
https://github.com/steinhobelgruen/netatmo-exporter.git
synced 2024-11-21 17:03:56 +00:00
10 lines
197 B
Bash
Executable file
10 lines
197 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
echo "Build binary..."
|
|
GOOS=linux GOARCH=arm go build -v -ldflags="-s -w" .
|
|
|
|
type upx && {
|
|
echo "Packing using upx..."
|
|
upx -9 netatmo-exporter
|
|
} || echo "upx not available"
|