diff options
author | davidovski <david@davidovski.xyz> | 2022-03-31 00:43:08 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-03-31 00:43:08 +0100 |
commit | 001f67eba6d24cf5fb086c9de9f902727e6db089 (patch) | |
tree | 1e161816bd3b21ee7ecb79ebef27f5af511088e7 /src | |
parent | 47bd888ccda7f68a25b2c5ab6aaa5edfd66d1dd5 (diff) |
fixed postinstallv1.1.6
Diffstat (limited to 'src')
-rw-r--r-- | src/install.sh | 4 |
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 # |