Skip to content

Commit

Permalink
www-apps/follow-bin: fix permission
Browse files Browse the repository at this point in the history
Signed-off-by: jinqiang zhang <[email protected]>
  • Loading branch information
peeweep committed Oct 8, 2024
1 parent f8125d4 commit dc3d93b
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@ src_unpack() {
"${S}/${P}.AppImage" --appimage-extract || die
}

src_prepare() {
# fix permissions
find "${S}/squashfs-root" -type d -exec chmod 0755 "{}" + || die 'chmod 0755 failed.'
default
}

src_install() {
cd "${S}/squashfs-root" || die

Expand Down

0 comments on commit dc3d93b

Please sign in to comment.