blob: 15cf0e6c29dca177061aeaa35c5583f55e042d12 [file] [log] [blame]
#!/bin/bash
PLUGINS=$ONOS_ROOT/bin/plugins
set -e
# Build it first
pluginJar=$(NO_BUCKD=1 onos-buck build //tools/build/buck-plugin:onos --no-cache --show-output | grep onos.jar | cut -d\ -f2)
# Then install it
mkdir -p $PLUGINS
cp $ONOS_ROOT/$pluginJar $PLUGINS
ls -l $PLUGINS