11 lines
242 B
Bash
11 lines
242 B
Bash
|
#!/hint/bash -euE
|
||
|
# Copyright (C) 2023 Umorpha Systems
|
||
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
|
||
|
post_install+=(99:small:post_install)
|
||
|
small:post_install() {
|
||
|
local arg_mountpoint=$1
|
||
|
|
||
|
rm -f -- "$arg_mountpoint"/var/cache/pacman/pkg/*
|
||
|
}
|