blob: 07dfd354beb3532121d83e04248274040d4112af [file] [log] [blame]
Steven Burrowsa145e102017-06-16 13:37:50 -04001#!/bin/bash
Steven Burrows46c5f102017-07-14 16:52:46 +01002set -e
Steven Burrowsa145e102017-06-16 13:37:50 -04003
4ONOS_INSTALL_LOCATION=$2
5echo ${ONOS_INSTALL_LOCATION}
6
Steven Burrows46c5f102017-07-14 16:52:46 +01007export NODEJS_HOME=${ONOS_INSTALL_LOCATION}
Steven Burrowsa145e102017-06-16 13:37:50 -04008export PATH=$NODEJS_HOME/bin:$PATH
9
10cd $ONOS_ROOT/tools/gui
Steven Burrowsa145e102017-06-16 13:37:50 -040011
12# Install Project Dependencies
13echo "Installing project dependencies"
14npm install --loglevel=error
15
16# Build the GUI Project
17echo "Packaging JavaScript and CSS"
18npm run build