tests: small fixes on builders scripts.

This commit is contained in:
Alexandre Pujol 2024-10-16 23:58:48 +01:00
parent 4797026e28
commit d406596124
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
4 changed files with 21 additions and 19 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -eu
export BUILDDIR=/tmp/build/ PKGDEST=/tmp/pkg
export BUILDDIR=/tmp/build/
# shellcheck source=/dev/null
_lsb_release() {
@ -20,6 +20,8 @@ debian | ubuntu | whonix)
make dpkg
sudo rm -rf debian/.debhelper/
;;
opensuse*) make rpm ;;
opensuse*)
make rpm
;;
*) ;;
esac