From 50009fc275f207544d73e3bf74295d3e375537ad Mon Sep 17 00:00:00 2001 From: Soyoung Kim Date: Tue, 11 Jun 2013 14:54:49 +0900 Subject: [PATCH] Fixed installation hybrid web app. [Issue#] N/A [Problem] can't install hybrid web app. [Cause] wrong comparison [Solution] fixed comparison. [SCMRequest] N/A Change-Id: I67fb358f683a82dc3d601c86148dc47705ef2687 --- src/jobs/widget_install/task_manifest_file.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jobs/widget_install/task_manifest_file.cpp b/src/jobs/widget_install/task_manifest_file.cpp index e94475d..652d87f 100755 --- a/src/jobs/widget_install/task_manifest_file.cpp +++ b/src/jobs/widget_install/task_manifest_file.cpp @@ -598,7 +598,7 @@ void TaskManifestFile::stepParseManifest() DPL::ToUTF8String(manifest_name); if (!access(commit_manifest.c_str(), F_OK) == 0 && - !access(preload_manifest.c_str(), F_OK)) { + !access(preload_manifest.c_str(), F_OK) == 0) { commitManifest(); code = pkgmgr_parser_parse_manifest_for_installation( commit_manifest.c_str(), (updateTags[0] == NULL) ? NULL : updateTags); -- 2.7.4