From 05f89b77a73fc0eedb8f626e5b6f933403a10b9b Mon Sep 17 00:00:00 2001 From: "ggh1933.go" Date: Fri, 27 May 2016 11:39:01 +0900 Subject: [PATCH] [HOTFIX]Specify Copy changed dependency-plugin path on MACOS in buildScript Change-Id: I67c95186be1466c1de513e3e3b1cf9271751251a --- package/build.linux | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/package/build.linux b/package/build.linux index bb0ef94..180e996 100644 --- a/package/build.linux +++ b/package/build.linux @@ -31,7 +31,7 @@ __set_parameter() architecture=x86_64 os=linux ;; - windows-64) + windows-64) archive_platform_name=win32 windowing=win32 architecture=x86_64 @@ -152,7 +152,18 @@ __copy_build_sources() __copy_dependency_plugins() { - dependency_plugin_path=${ROOTDIR}/ide + case ${platform} in + ubuntu-32|ubuntu-64|sindows-32|windows-64) + dependency_plugin_path=${ROOTDIR}/ide + ;; + macos-64) + dependency_plugin_path=${ROOTDIR}/IDE.app/Contents/Eclipse + ;; + *) + echo "${platform} is not support yet." + ;; + esac + if [ -d ${dependency_plugin_path} ] then cp -rf ${dependency_plugin_path}/features/* ${build_path}/features/ -- 2.7.4