Updated Branches: refs/heads/master 5c9828db7 -> 55db2fe6d
mvn clean does not do a complete clean Retains the systevm.iso from the previous run causing systemvm.iso to never update itself. Do a complete clean install for all profiles specified in mvn. Signed-off-by: Prasanna Santhanam <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/55db2fe6 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/55db2fe6 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/55db2fe6 Branch: refs/heads/master Commit: 55db2fe6d12338bcd5b4860aaaa52e37a9cad174 Parents: 5c9828d Author: Prasanna Santhanam <[email protected]> Authored: Mon Jun 3 14:05:15 2013 +0530 Committer: Prasanna Santhanam <[email protected]> Committed: Mon Jun 3 14:29:48 2013 +0530 ---------------------------------------------------------------------- packaging/centos63/cloud.spec | 10 ++++------ 1 files changed, 4 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/55db2fe6/packaging/centos63/cloud.spec ---------------------------------------------------------------------- diff --git a/packaging/centos63/cloud.spec b/packaging/centos63/cloud.spec index 13cd8aa..83ccae8 100644 --- a/packaging/centos63/cloud.spec +++ b/packaging/centos63/cloud.spec @@ -165,13 +165,11 @@ echo VERSION=%{_maventag} >> build/replace.properties echo PACKAGE=%{name} >> build/replace.properties if [ "%{_ossnoss}" == "NONOSS" -o "%{_ossnoss}" == "nonoss" ] ; then - echo "Executing mvn packaging for NONOSS ..." - mvn clean - mvn -Pawsapi,systemvm -Dnonoss package + echo "Executing mvn packaging for NONOSS ..." + mvn -Pawsapi,systemvm -Dnonoss package clean install else - echo "Executing mvn packaging for OSS ..." - mvn clean - mvn -Pawsapi package -Dsystemvm + echo "Executing mvn packaging for OSS ..." + mvn -Pawsapi package -Dsystemvm clean install fi %install
