fix(typo): .cache -> .ccache

This commit is contained in:
Hoang Nguyen 2024-01-14 00:00:00 +07:00
parent 3852df5f14
commit 776c01cdcc
Signed by: folliehiyuki
GPG Key ID: B0567C20730E9B11
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ doas cp "$HOME"/.abuild/*.rsa.pub /etc/apk/keys/
doas install -d -m 775 -g abuild /var/cache/distfiles
# correct permissions of podman's volumes
for vpath in "$HOME"/.cache "$HOME"/.abuild "$HOME"/packages; do
for vpath in "$HOME"/.ccache "$HOME"/.abuild "$HOME"/packages; do
[ -d "$vpath" ] && doas chown builder:builder "$vpath"
done