diff options
author | Gunnar Beutner <gbeutner@serenityos.org> | 2021-08-14 19:45:12 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-14 20:28:55 +0200 |
commit | 909e19f753c44ea99449b1d9c95bdaa36bc43448 (patch) | |
tree | b4608f8f2a64a9ac2e6facbc2b874a85a2e99641 /Ports | |
parent | e7d7b43f99b2e8089c0e21543378c5e56713425c (diff) | |
download | serenity-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-x | Ports/mysthous/package.sh | 1 |
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} } |