From 909e19f753c44ea99449b1d9c95bdaa36bc43448 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Sat, 14 Aug 2021 19:45:12 +0200 Subject: [PATCH] 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. --- Ports/mysthous/package.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Ports/mysthous/package.sh b/Ports/mysthous/package.sh index 795fdcd45d..bf8af35275 100755 --- a/Ports/mysthous/package.sh +++ b/Ports/mysthous/package.sh @@ -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} }