From 212b6d8a5708f8ff9b50379b82ce95dc9c792188 Mon Sep 17 00:00:00 2001 From: deepend-tildeclub <58404188+deepend-tildeclub@users.noreply.github.com> Date: Wed, 14 Jan 2026 00:14:41 -0700 Subject: [PATCH] Fix directory listing format in OpenBSD build workflow --- .github/workflows/openbsd-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/openbsd-build.yml b/.github/workflows/openbsd-build.yml index 43b93861..abd2a6bc 100644 --- a/.github/workflows/openbsd-build.yml +++ b/.github/workflows/openbsd-build.yml @@ -49,7 +49,7 @@ jobs: echo "@comment OpenBSD package built by GitHub Actions" echo "@cwd /usr/local" find "$PWD/staging/usr/local" -type f -o -type l | sort | sed "s#^$PWD/staging/usr/local/##" - find "$PWD/staging/usr/local" -mindepth 1 -type d | sort -r | sed "s#^$PWD/staging/usr/local#@dir #" + find "$PWD/staging/usr/local" -mindepth 1 -type d | sort -r | sed "s#^$PWD/staging/usr/local/##" | sed 's#^#@dir #' } > "$plist" pkg_create -p /usr/local -f "$plist" -U "$PWD/${pkg_name}.tgz"