mirror of https://github.com/pwndbg/pwndbg.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
598 B
Bash
16 lines
598 B
Bash
#!/bin/sh
|
|
|
|
# This script performs a release build similar to what CI/CD does
|
|
# It just does everything at once :)
|
|
#
|
|
# It can be useful if one needs to build the release binaries manually
|
|
|
|
O="--extra-experimental-features nix-command --extra-experimental-features flakes"
|
|
|
|
nix build $O '.#pwndbg' -o result-pwndbg
|
|
nix build $O '.#pwndbg-gdb-portable-rpm' -o dist-rpm
|
|
nix build $O '.#pwndbg-gdb-portable-deb' -o dist-deb
|
|
nix build $O '.#pwndbg-gdb-portable-apk' -o dist-apk
|
|
nix build $O '.#pwndbg-gdb-portable-archlinux' -o dist-archlinux
|
|
nix build $O '.#pwndbg-gdb-portable-tarball' -o dist-tarball
|