7 lines
162 B
Bash
Executable File
7 lines
162 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")/.."
|
|
mkdir -p bin
|
|
CGO_ENABLED=0 go build -trimpath -ldflags "-s -w" -o bin/codex-telegram-bot ./cmd/bot
|