From 001f67eba6d24cf5fb086c9de9f902727e6db089 Mon Sep 17 00:00:00 2001 From: davidovski Date: Thu, 31 Mar 2022 00:43:08 +0100 Subject: fixed postinstall --- src/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/install.sh b/src/install.sh index d8823ac..3cab32f 100644 --- a/src/install.sh +++ b/src/install.sh @@ -60,8 +60,8 @@ total_filecount() { run_postinstall () { postinstall="${SYSROOT}/var/lib/xipkg/postinstall" if [ -d $postinstall ]; then - for file in $(ls $postinstall); do - f=$(basename $file) + for f in $(ls $postinstall); do + file=$postinstall/$f # run the postinstall file # -- cgit v1.2.1