mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 18:02:05 +02:00
Added onos-create-app as a convenience. Change-Id: Ide9b9801a0a1d2229a153b85e23766f6018a8267
17 lines
604 B
Bash
Executable File
17 lines
604 B
Bash
Executable File
#!/bin/bash
|
|
# -----------------------------------------------------------------------------
|
|
# Update bundle on locally running karaf.
|
|
# -----------------------------------------------------------------------------
|
|
|
|
[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
|
|
. $ONOS_ROOT/tools/build/envDefaults
|
|
|
|
cd ~/.m2/repository
|
|
jar=$(find org/onosproject -type f -name '*.jar' | grep -e $1 | grep -v -e -tests | head -n 1)
|
|
|
|
[ -z "$jar" ] && echo "No bundle $1 found for" && exit 1
|
|
|
|
bundle=$(echo $(basename $jar .jar) | sed 's/-[0-9].*//g')
|
|
|
|
client "bundle:update -f $bundle" 2>/dev/null
|