blob: 4d71039fb739c92020ba96516739239dffdb7fcd [file] [log] [blame]
Brian O'Connore8468b52016-07-25 13:42:36 -07001#!/bin/bash
2
3PLUGINS=$ONOS_ROOT/bucklets/plugins
4
5# Build it first
6pluginJar=$(NO_BUCKD=1 buck build //tools/build/buck-plugin:onosjar --no-cache --show-output | grep onosjar.jar | cut -d\ -f2)
7
8# Then install it
9mkdir -p $PLUGINS
10cp $ONOS_ROOT/$pluginJar $PLUGINS
11
12ls -l $PLUGINS