mirror of
https://github.com/traefik/traefik.git
synced 2025-05-05 23:43:01 +00:00
14 lines
214 B
Bash
Executable File
14 lines
214 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if ! test -e gen.go; then
|
|
echo >&2 'error: generate must be run before binary'
|
|
false
|
|
fi
|
|
|
|
rm -f dist/traefik
|
|
|
|
# Build binaries
|
|
CGO_ENABLED=0 go build -a -installsuffix nocgo -o dist/traefik .
|
|
|