mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-09 18:53:55 +00:00
14 lines
258 B
Bash
14 lines
258 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
./build/operator/prebuild.sh "./migrations"
|
||
|
|
||
|
CGO_ENABLED=0 go build \
|
||
|
-a \
|
||
|
-installsuffix cgo \
|
||
|
-ldflags "-X main.Version=$(git rev-parse --abbrev-ref HEAD | sed -e 's/heads\///')" \
|
||
|
-o zitadelctl \
|
||
|
./cmd/zitadelctl/main.go
|
||
|
|