mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
10 lines
230 B
Bash
Executable File
10 lines
230 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
od=$(pwd)
|
|
mkdir -p pkg/ubuntu-20.04/opt
|
|
rsync --delete -a _build/prod/rel/fireguard pkg/ubuntu-20.04/opt/
|
|
cd pkg
|
|
dpkg-deb --build ubuntu-20.04
|
|
mv -f ubuntu-20.04.deb ../fireguard_ubuntu-20.04_amd64.deb
|