fix(ci): ensure output build directory exist.

This commit is contained in:
Alexandre Pujol 2024-10-09 13:31:57 +01:00
parent 94703681d9
commit 6afcfa85ec
No known key found for this signature in database
GPG Key ID: C5469996F0DF68EC
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
DESTDIR ?= /
BUILD ?= .build
PKGDEST ?= /tmp/pkg
PKGDEST ?= ${PWD}/.pkg
PKGNAME := apparmor.d
P = $(filter-out dpkg,$(notdir $(wildcard ${BUILD}/apparmor.d/*)))

View File

@ -8,7 +8,7 @@
set -eu -o pipefail
readonly COMMAND="$1"
readonly OUTPUT=".pkg"
readonly OUTPUT="$PWD/.pkg"
readonly PKGNAME=apparmor.d
VERSION="0.$(git rev-list --count HEAD)"
readonly VERSION