mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 13:39:22 +01:00
10 lines
191 B
Bash
10 lines
191 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ ! -f mmdb.db ]]; then
|
||
|
sudo apt-get install -y curl ca-certificates brotli
|
||
|
curl https://mmdbcdn.posthog.net/ | brotli -d > mmdb.db
|
||
|
fi
|
||
|
|
||
|
git pull
|
||
|
go build
|
||
|
./livestream
|