blob: 9dc44d7cd025dd39be5507045508c46e6d57490a [file] [log] [blame]
#!/bin/bash
PLUGINS=$ONOS_ROOT/bin/plugins
set -e
# Build it first
pluginJar=$(NO_BUCKD=1 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