소스 검색

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.
Gunnar Beutner 4 년 전
부모
커밋
e7d7b43f99
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      Ports/lure/package.sh

+ 1 - 0
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}
 }