mirror of
https://github.com/kuhyx/signal-bot.git
synced 2026-07-04 13:43:12 +02:00
12 lines
203 B
Bash
Executable File
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
|