mirror of
https://github.com/archlinux/aur.git
synced 2026-03-04 23:52:16 +01:00
Revert to original working cp command
- Changed back from specific file copying to cp -r . approach - This was the working approach before our changes - Fixes the system file permission errors in AUR builds
This commit is contained in:
parent
7b6a97d5ed
commit
a0c14617cc
1 changed files with 2 additions and 2 deletions
4
PKGBUILD
4
PKGBUILD
|
|
@ -45,8 +45,8 @@ package() {
|
|||
# Create installation directory
|
||||
install -dm755 "${pkgdir}/opt/${pkgname}"
|
||||
|
||||
# Copy only the source files (exclude system files)
|
||||
cp -r bin config lib scripts share requirements.txt README.md LICENSE "${pkgdir}/opt/${pkgname}/"
|
||||
# Copy all source files to /opt/hyprwhspr
|
||||
cp -r . "${pkgdir}/opt/${pkgname}/"
|
||||
|
||||
# Make scripts executable
|
||||
chmod +x "${pkgdir}/opt/${pkgname}/scripts/"*.sh
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue