From: Stephane Desneux Date: Thu, 26 Feb 2015 18:22:16 +0000 (+0100) Subject: Fix pkill call (arguments order mismatch) X-Git-Tag: submit/tizen_common/20150226.182511^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eb06b6e06b3f789cc1a5b92c60f1e0638ebe19b4;p=profile%2Fcommon%2Fwrt-widgets.git Fix pkill call (arguments order mismatch) The given pkill call doesn't work with older procps packages. Change-Id: Iec11c6ec52e42f4ce74efcc90d2af266737254fe Signed-off-by: Stephane Desneux --- diff --git a/install_widgets.sh b/install_widgets.sh index a2f0c0f..d5e8801 100755 --- a/install_widgets.sh +++ b/install_widgets.sh @@ -32,7 +32,7 @@ function do_install() { info "$nbinstall applications installed" if [ $nbinstall -gt 0 ]; then info "sending restart signal to tz-launcher" - pkill -U $UID -USR1 tz-launcher + pkill -USR1 -U $UID tz-launcher fi else info "$wgtdir doesn't contains any widgets (.wgt)"