archboot/usr/lib/initcpio/install/archboot_cache

17 lines
273 B
Text
Raw Normal View History

2022-03-18 20:21:14 +01:00
#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-2.0-only
2022-03-18 20:21:14 +01:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
add_full_dir /var/cache/pacman/pkg
}
help ()
{
cat<<HELPEOF
This hook includes /var/cache/pacman/pkg.
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et: