summaryrefslogtreecommitdiff
path: root/Ports
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-08-14 19:45:12 +0200
committerAndreas Kling <kling@serenityos.org>2021-08-14 20:28:55 +0200
commit909e19f753c44ea99449b1d9c95bdaa36bc43448 (patch)
treeb4608f8f2a64a9ac2e6facbc2b874a85a2e99641 /Ports
parente7d7b43f99b2e8089c0e21543378c5e56713425c (diff)
downloadserenity-909e19f753c44ea99449b1d9c95bdaa36bc43448.zip
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.
Diffstat (limited to 'Ports')
-rwxr-xr-xPorts/mysthous/package.sh1
1 files changed, 1 insertions, 0 deletions
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}
}