signal-bot/run_go.sh
copilot-swe-agent[bot] 096a5cb4df Address code review feedback and fix security issues
Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>
2025-12-01 15:19:29 +00:00

12 lines
203 B
Bash
Executable File

#!/bin/sh
# Build and run the Go version of Signal Bot
# First, build the application
if ! go build -o signal-bot main.go; then
echo "Build failed"
exit 1
fi
# Run the application
./signal-bot