From e7d7b43f99b2e8089c0e21543378c5e56713425c Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Sat, 14 Aug 2021 19:44:23 +0200 Subject: [PATCH] Ports: Fix reinstalling the lure port Reinstalling the port failed because some of its files were installed with permissions that prevented overwriting the existing files with cp. --- Ports/lure/package.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Ports/lure/package.sh b/Ports/lure/package.sh index 9f44c4932b..01a19dce3b 100755 --- a/Ports/lure/package.sh +++ b/Ports/lure/package.sh @@ -19,5 +19,6 @@ build() { install() { target_dir="${SERENITY_INSTALL_ROOT}${resource_path}" run_nocd mkdir -p ${target_dir} + run_nocd chmod 644 ${workdir}/* run_nocd cp ${workdir}/* ${target_dir} }