From ffe3ee9014033ca87189450935a5d07e99a52eeb Mon Sep 17 00:00:00 2001 From: JongHeon Choi Date: Fri, 18 Mar 2016 11:03:18 +0900 Subject: [PATCH] Modify symlink for watchapp Change-Id: I209698d952602b90bd72dd0c3b445d743d1c26ad --- src/wgt/step/filesystem/step_create_symbolic_link.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wgt/step/filesystem/step_create_symbolic_link.cc b/src/wgt/step/filesystem/step_create_symbolic_link.cc index bd3cc03..397c7d8 100644 --- a/src/wgt/step/filesystem/step_create_symbolic_link.cc +++ b/src/wgt/step/filesystem/step_create_symbolic_link.cc @@ -44,6 +44,8 @@ common_installer::Step::Status StepCreateSymbolicLink::process() { if (strcmp(app->component_type, "uiapp") == 0) { bf::create_symlink(bf::path(WRT_LAUNCHER), exec_path, error); + } else if (strcmp(app->component_type, "watchapp") == 0) { + bf::create_symlink(bf::path(WRT_LAUNCHER), exec_path, error); } else { bf::create_symlink(kWrtServiceBinaryPath, exec_path, error); } -- 2.7.4