Skip to content
Snippets Groups Projects
Commit 9c38e15d authored by Jeremy Mordkoff's avatar Jeremy Mordkoff Committed by Gerrit Code Review
Browse files

Merge "BUG 385 update UI installer to actually call BUILD.sh"

parents d88f8c4d 7e3b580b
No related branches found
No related tags found
No related merge requests found
......@@ -27,13 +27,15 @@ export OSM_MDG=UI
OSM_load_config
OSM_git_checkout "$@"
trap 'WARNING "INTERRUPT"; exit 1' INT
INFO "starting build"
make clean || FATAL "Make clean failed"
make -j16 || FATAL "Make failed"
sudo make install || FATAL "Make install Failed"
./BUILD.sh
INFO "build done"
exit 0
RC=$?
INFO "done, RC=$RC"
exit $RC
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment