diff options
author | Ashlee Young <ashlee@onosfw.com> | 2015-10-23 10:39:24 -0700 |
---|---|---|
committer | Ashlee Young <ashlee@onosfw.com> | 2015-10-23 10:39:24 -0700 |
commit | fa354d1f604894f94ce60a24cf48453204abfe05 (patch) | |
tree | f76d06226d5cde50ddf4d62f5145fd315787e2b7 | |
parent | a95e947516d1cf5a597ef8a679352d525d0d73f5 (diff) |
Created main() function with execution order
Change-Id: I05d06128ecf7d9693c8121691ebf51859d0800fb
Signed-off-by: Ashlee Young <ashlee@onosfw.com>
-rwxr-xr-x | build.sh | 16 |
1 files changed, 11 insertions, 5 deletions
@@ -176,9 +176,15 @@ installMaven() } ##### End Install Maven ##### +##### Execution order ##### +main() +{ + displayVersion + updateONOS + checkJAVA + installAnt + installMaven +} +##### End Execution order ##### -displayVersion -updateONOS -checkJAVA -installAnt -installMaven +main # Launches the build process
\ No newline at end of file |