summaryrefslogtreecommitdiff
path: root/src/install.sh
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-03-31 00:43:08 +0100
committerdavidovski <david@davidovski.xyz>2022-03-31 00:43:08 +0100
commit001f67eba6d24cf5fb086c9de9f902727e6db089 (patch)
tree1e161816bd3b21ee7ecb79ebef27f5af511088e7 /src/install.sh
parent47bd888ccda7f68a25b2c5ab6aaa5edfd66d1dd5 (diff)
fixed postinstallv1.1.6
Diffstat (limited to 'src/install.sh')
-rw-r--r--src/install.sh4
1 files 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
#