summaryrefslogtreecommitdiff
path: root/src/install.sh
diff options
context:
space:
mode:
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
#