mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-10 08:53:40 +00:00
9 lines
242 B
Bash
9 lines
242 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
./build/operator/prebuild.sh "./migrations"
|
||
|
|
||
|
go build -gcflags "all=-N -l" -o /tmp/zitadeloperator-debug ./cmd/operator-debug
|
||
|
dlv exec --api-version 2 --headless --listen 127.0.0.1:2345 /tmp/zitadeloperator-debug -- "$@"
|