From 848819cd4521392491df26b122773d4a266a4cf7 Mon Sep 17 00:00:00 2001 From: Youngsoo Choi Date: Mon, 6 Nov 2017 21:55:45 +0900 Subject: [PATCH] fixup! [Tizen] Add script to set environment variables Tizen app framework sends magic value of parameter, like 'zaybxcwdveuftgsh' when launching app on homescreen. This ignores the magic value. Change-Id: I0c4ce984ecdc592489885aa4a14c9b6e427109f4 Signed-off-by: Youngsoo Choi --- wrt/build/script/run_was_tizen.sh | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/wrt/build/script/run_was_tizen.sh b/wrt/build/script/run_was_tizen.sh index a4406c7..76ab74c 100755 --- a/wrt/build/script/run_was_tizen.sh +++ b/wrt/build/script/run_was_tizen.sh @@ -17,11 +17,5 @@ export WAS_INSTALLER_EXT_PATH=$WAS_HOME/installer/js/extension export WAS_APPS_REPO=$WAS_HOME/apps_repo export WAS_SAMPLE_PATH=$WAS_HOME/sample -if [ -n "$1" ] -then - echo "PACKAGE_NAME : " $1 - $SCRIPTDIR/electron --harmony --use_strict -p $1 -else - echo "Start launcher" - $SCRIPTDIR/electron --harmony --use_strict -fi +echo "Start launcher" +$SCRIPTDIR/electron -- 2.7.4