blob: 3c82c773e7e46e5c493f5fa2bec6ae0499c9e3fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
local install_dir='/usr/share/refind/themes/nord'
cd "$install_dir" || exit 1
echo "Setup refind-theme-nord-$1"
echo "Executing ${install_dir}/setup.sh..."
if ! bash setup.sh; then
echo "###########################################################"
echo "A problem occurred when running 'setup.sh', run it manually"
echo "###########################################################"
fi
}
post_upgrade() {
post_install
}
|