summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rwxr-xr-xscripts/update/opie-update.postinst11
1 files changed, 7 insertions, 4 deletions
diff --git a/scripts/update/opie-update.postinst b/scripts/update/opie-update.postinst
index d42169b..b86bc31 100755
--- a/scripts/update/opie-update.postinst
+++ b/scripts/update/opie-update.postinst
@@ -20,5 +20,7 @@ for p in $pack; do
20cmd="$IPKG_REMOVE $p" 20cmd="$IPKG_REMOVE $p"
21echo "rem. $p" >> /tmp/update.log 21echo "rem. $p" >> /tmp/update.log
22$cmd 22if [$p!="opie-update]; then
23$cmd;
24fi
23done 25done
24 26
@@ -27,5 +29,5 @@ sync
27 29
28 30
29echo "Updateing" 31echo "Updating"
30`ipkg update` 32`ipkg update`
31 33
@@ -33,6 +35,7 @@ for p in $pack; do
33cmd="$IPKG_INSTALL $p" 35cmd="$IPKG_INSTALL $p"
34echo "inst. $p" >> /tmp/update.log 36echo "inst. $p" >> /tmp/update.log
35echo "$cmd" 37if [$p!="opie-update]; then
36$cmd 38$cmd;
39fi
37done 40done
38 41