Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit 1bcb138

Browse files
committed
Fixed pass-audit #3059
1 parent ac7c87e commit 1bcb138

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tools/pass-audit/Dockerfile.template

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ ARG version
1414
RUN <<EOF
1515
curl --silent --location --fail "https://github.com/roddhjav/pass-audit/releases/download/v${version}/pass-audit-${version}.tar.gz" \
1616
| tar --extract --gzip --strip-components=1 --no-same-owner
17-
make install \
18-
DESTDIR="${prefix}" \
19-
PREFIX="${target}"
17+
mkdir -p "${prefix}${target}/usr/lib/password-store/extensions/"
18+
cp audit.bash "${prefix}${target}/usr/lib/password-store/extensions/"
19+
cp share/man/man1/pass-audit.1 "${prefix}${target}/share/man/man1/"
20+
cp share/bash-completion/completions/pass-audit "${prefix}${target}/share/bash-completion/completions/"
21+
cp share/zsh/site-functions/_pass-audit "${prefix}${target}/share/zsh/vendor-completions/"
2022
EOF

0 commit comments

Comments
 (0)