mirror of
https://github.com/unpoller/unpoller.git
synced 2026-07-28 00:32:43 -04:00
10 lines
148 B
Bash
10 lines
148 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Load the environment variables needed for testing
|
|
export $(cat .env | grep -v ^# | xargs)
|
|
|
|
go clean
|
|
go build -o unifi
|
|
./unifi
|