diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-10-22 16:22:06 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-10-22 16:22:06 +0200 |
commit | 9c3d3e71b42ba3bd1b358cc0a7695a22ce7ece9e (patch) | |
tree | b723da4a6289874e5f57d1dd340c9fab5049adf4 /easy_e17.sh | |
parent | f55a6637a443bd57f9bd605d4304b215569496f9 (diff) | |
download | bin-9c3d3e71b42ba3bd1b358cc0a7695a22ce7ece9e.zip bin-9c3d3e71b42ba3bd1b358cc0a7695a22ce7ece9e.tar.gz |
easy_e17.sh: remove ewebkit from update parsing
Diffstat (limited to 'easy_e17.sh')
-rwxr-xr-x | easy_e17.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/easy_e17.sh b/easy_e17.sh index cb34740..6276ac7 100755 --- a/easy_e17.sh +++ b/easy_e17.sh @@ -784,6 +784,7 @@ function parse_svn_updates () done if [ $found == 1 ]; then continue; fi for pkg in $effective_packages; do + [ "$pkg" == "ewebkit" ] && continue if [ `echo "$dir" | egrep -q "^$pkg/|/$pkg/"; echo $?` == 0 ]; then if [ ! `echo "$updated_packages" | egrep -q "^ $pkg | $pkg \$| $pkg "; echo $?` == 0 ]; then updated_packages="$updated_packages $pkg" @@ -838,6 +839,7 @@ function parse_git_updates () else updated_packages="" for pkg in $effective_packages; do + [ "$pkg" == "ewebkit" ] && continue path=$(find_local_path $kpg) if [ `cat "$tmp_path/source_update.log" | egrep -q "^${path#$src_path}"; echo $?` == 0 ]; then updated_packages="$updated_packages $pkg" @@ -1270,7 +1272,7 @@ echo "- parse updated sources ..." if [ "$action" == "update" ]; then if [ $ewk_enabled -eq 1 ] && [ -e "$tmp_path/ewebkit_update.log" ]; then ewebkit_updates=$(egrep "^[A|D|G|U] " $tmp_path/ewebkit_update.log | wc -l) - [ $ewebkit_updates -gt 0 ] && echo "- ewebkit" + [ $ewebkit_updates -gt 0 ] && echo " - ewebkit" else ewebkit_updates=0 fi |