mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 01:41:26 +02:00
15 lines
279 B
Bash
Executable File
15 lines
279 B
Bash
Executable File
#!/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
|