Thomas Vachuska | 4e45ccd | 2014-10-27 20:03:46 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # ----------------------------------------------------------------------------- |
| 3 | # ONOS OE-Linc config generator. |
| 4 | # ----------------------------------------------------------------------------- |
| 5 | |
| 6 | [ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1 |
| 7 | . $ONOS_ROOT/tools/build/envDefaults |
| 8 | |
| 9 | APP=onos-app-oecfg |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 10 | JAR=$M2_REPO/org/onosproject/$APP/$ONOS_POM_VERSION/$APP-$ONOS_POM_VERSION.jar |
Thomas Vachuska | 4e45ccd | 2014-10-27 20:03:46 -0700 | [diff] [blame] | 11 | |
| 12 | java -jar $JAR < $1 | python -mjson.tool |