mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-10 16:00:18 +00:00
Fix directory listing format in OpenBSD build workflow
This commit is contained in:
committed by
GitHub
parent
de4812cf93
commit
212b6d8a57
2
.github/workflows/openbsd-build.yml
vendored
2
.github/workflows/openbsd-build.yml
vendored
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user