Ports: Fix reinstalling the mysthous port

Reinstalling the port failed because some of its files were installed
with permissions that prevented overwriting the existing files with cp.
This commit is contained in:
Gunnar Beutner 2021-08-14 19:45:12 +02:00 committed by Andreas Kling
parent e7d7b43f99
commit 909e19f753

View file

@ -27,5 +27,6 @@ post_fetch() {
install() {
target_dir="${SERENITY_INSTALL_ROOT}${resource_path}"
run_nocd mkdir -p ${target_dir}
run_nocd chmod 644 ${workdir}/*
run_nocd cp ${workdir}/MYSTHOUS.DSK ${target_dir}
}