diff options
author | Stephane Desneux <stephane.desneux@open.eurogiciel.org> | 2014-11-17 19:44:37 +0100 |
---|---|---|
committer | Stephane Desneux <stephane.desneux@open.eurogiciel.org> | 2014-11-17 19:44:37 +0100 |
commit | 63c2d78d4a3a9e40f9193fc350ac18a62a41b9e9 (patch) | |
tree | 4d9b3bda34dd353b0f77a7cad3481b913597ba4d | |
parent | b7c5bf1ce8f51ad5ca50ba93e612579b2d451ecd (diff) | |
download | wrt-widgets-63c2d78d4a3a9e40f9193fc350ac18a62a41b9e9.tar.gz wrt-widgets-63c2d78d4a3a9e40f9193fc350ac18a62a41b9e9.tar.bz2 wrt-widgets-63c2d78d4a3a9e40f9193fc350ac18a62a41b9e9.zip |
use pkgcmd instead of xwalkctl to install widgetssubmit/tizen_mobile/20141120.000000submit/tizen_common/20141118.090639accepted/tizen/common/20141118.091538
Change-Id: Ia9d5617bd46afc90962421cc6deefdafbfcb7f36
Signed-off-by: Stephane Desneux <stephane.desneux@open.eurogiciel.org>
-rwxr-xr-x | install_widgets.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install_widgets.sh b/install_widgets.sh index 52f4e8d..a2f0c0f 100755 --- a/install_widgets.sh +++ b/install_widgets.sh @@ -18,7 +18,7 @@ function do_install() { local try=1 local ok=0 while [ $try -le 3 ]; do - xwalkctl -i $wgtdir/$wgt && { ok=1; break; } + pkgcmd -i -q -t wgt -p $wgtdir/$wgt && { ok=1; break; } try=$((try+1)) sleep 3 done |